POST api/outbund/login
Request Information
URI Parameters
None.
Body Parameters
loginReq| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
None. |
|
| password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"username": "sample string 1",
"password": "sample string 2"
}
application/xml, text/xml
Sample:
<loginReq xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.WebAPI.Controllers"> <password>sample string 2</password> <username>sample string 1</username> </loginReq>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
loginRes| Name | Description | Type | Additional information |
|---|---|---|---|
| access_token | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"access_token": "sample string 1"
}
application/xml, text/xml
Sample:
<loginRes xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Ingeneo.Chattigo.WebAPI.Controllers"> <access_token>sample string 1</access_token> </loginRes>