POST sendProjectInvitationEmail

Request Information

URI Parameters

None.

Body Parameters

ShareProjectModel
NameDescriptionTypeAdditional information
ProjectId

integer

None.

UserId

string

None.

Email

string

None.

SharedUserName

string

None.

SenderName

string

None.

ProjectName

string

None.

Request Formats

application/json, text/json

Sample:
{
  "ProjectId": 1,
  "UserId": "sample string 2",
  "Email": "sample string 3",
  "SharedUserName": "sample string 4",
  "SenderName": "sample string 5",
  "ProjectName": "sample string 6"
}

application/xml, text/xml

Sample:
<ShareProjectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AbbApi.Models">
  <Email>sample string 3</Email>
  <ProjectId>1</ProjectId>
  <ProjectName>sample string 6</ProjectName>
  <SenderName>sample string 5</SenderName>
  <SharedUserName>sample string 4</SharedUserName>
  <UserId>sample string 2</UserId>
</ShareProjectModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'ShareProjectModel'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>