GET api/account/invite/{accountStatusKey}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| accountStatusKey | globally unique identifier |
Required |
Body Parameters
None.
Response Information
Resource Description
AccountInvite| Name | Description | Type | Additional information |
|---|---|---|---|
| string |
None. |
||
| FirstName | string |
None. |
|
| Lastname | string |
None. |
|
| OptionalParams | Object |
None. |
|
| SendInvite | boolean |
None. |
|
| UserType | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"Email": "sample string 1",
"FirstName": "sample string 2",
"Lastname": "sample string 3",
"OptionalParams": {},
"SendInvite": true,
"UserType": "sample string 6"
}
application/xml, text/xml
Sample:
<AccountInvite xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WisspNetApi.Models"> <Email>sample string 1</Email> <FirstName>sample string 2</FirstName> <Lastname>sample string 3</Lastname> <OptionalParams /> <SendInvite>true</SendInvite> <UserType>sample string 6</UserType> </AccountInvite>