POST api/login/authenticate
Request Information
URI Parameters
None.
Body Parameters
CredentialDTO| Name | Description | Type | Additional information |
|---|---|---|---|
| user | string |
None. |
|
| password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"user": "sample string 1",
"password": "sample string 2"
}
application/xml, text/xml
Sample:
<CredentialDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/ApiRESTPortal.DTOs"> <password>sample string 2</password> <user>sample string 1</user> </CredentialDTO>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
ResponseOfResponseAuthenticate| Name | Description | Type | Additional information |
|---|---|---|---|
| responseCode | integer |
None. |
|
| responseMessage | string |
None. |
|
| responseObject | ResponseAuthenticate |
None. |
Response Formats
application/json, text/json
Sample:
Sample not available.