POST api/external/login
Request Information
URI Parameters
None.
Body Parameters
AuthenticateRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| Key | string |
Required String length: inclusive between 0 and 256 |
|
| Secret | string |
Required String length: inclusive between 0 and 256 |
Request Formats
application/json, text/json
Sample:
{
"key": "sample string 1",
"secret": "sample string 2"
}
text/xml
Sample:
<AuthenticateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Request.Authenticate"> <Key>sample string 1</Key> <Secret>sample string 2</Secret> </AuthenticateRequest>
multipart/form-data
Sample:
<AuthenticateRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/BusinessEntities.Request.Authenticate"><Key>sample string 1</Key><Secret>sample string 2</Secret></AuthenticateRequest>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
HttpResponseMessage| Name | Description | Type | Additional information |
|---|---|---|---|
| Version | Version |
None. |
|
| Content | HttpContent |
None. |
|
| StatusCode | HttpStatusCode |
None. |
|
| ReasonPhrase | string |
None. |
|
| Headers | Collection of Object |
None. |
|
| RequestMessage | HttpRequestMessage |
None. |
|
| IsSuccessStatusCode | boolean |
None. |