POST api/Signing/Account/GetAccessToken
Gets the access token given a model.
Request Information
URI Parameters
None.
Body Parameters
The get access token model.
ESignSystems.SmartSAFE.Models.Signing.GetAccessTokenModel| Name | Description | Type | Additional information |
|---|---|---|---|
| ApiClientId |
Gets or sets the api client id. |
string |
Required |
| InviteCode |
Gets or sets the invite code. |
string |
Required |
| AccessCode |
Gets or sets the access code. |
string |
None. |
| IpAddress |
Gets or sets the ip address. |
string |
None. |
Request Formats
application/json, text/json
Sample:
{
"ApiClientId": "sample string 1",
"InviteCode": "sample string 2",
"AccessCode": "sample string 3",
"IpAddress": "sample string 4"
}
application/xml, text/xml
Sample:
<GetAccessTokenModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ESignSystems.SmartSAFE.Models.Signing"> <AccessCode>sample string 3</AccessCode> <ApiClientId>sample string 1</ApiClientId> <InviteCode>sample string 2</InviteCode> <IpAddress>sample string 4</IpAddress> </GetAccessTokenModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
The JSON access token.
stringResponse Formats
application/json, text/json
Sample:
"sample string 1"
application/xml, text/xml
Sample:
<string xmlns="http://schemas.microsoft.com/2003/10/Serialization/">sample string 1</string>