POST api/Login/Login
Request Information
URI Parameters
None.
Body Parameters
LoginInputInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| username | string |
None. |
|
| password | string |
None. |
|
| tenantId | string |
None. |
|
| access_token | string |
None. |
|
| IFAID | string |
None. |
|
| dbKey | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"username": "sample string 1",
"password": "sample string 2",
"tenantId": "sample string 3",
"access_token": "sample string 4",
"IFAID": "sample string 5",
"dbKey": "sample string 6"
}
application/xml, text/xml
Sample:
<LoginInputInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMIFARTADataRequestAPI.Models"> <IFAID>sample string 5</IFAID> <access_token>sample string 4</access_token> <dbKey>sample string 6</dbKey> <tenantId>sample string 3</tenantId> <password>sample string 2</password> <username>sample string 1</username> </LoginInputInfo>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
LoginOutputInfo| Name | Description | Type | Additional information |
|---|---|---|---|
| access_token | string |
None. |
|
| statusMessage | string |
None. |
|
| statusCode | string |
None. |
|
| error | string |
None. |
|
| IFAID | string |
None. |
|
| dbKey | string |
None. |
|
| IFAName | string |
None. |
Response Formats
application/json, text/json
Sample:
{
"access_token": "sample string 1",
"statusMessage": "sample string 2",
"statusCode": "sample string 3",
"error": "sample string 4",
"IFAID": "sample string 5",
"dbKey": "sample string 6",
"IFAName": "sample string 7"
}
application/xml, text/xml
Sample:
<LoginOutputInfo xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WMIFARTADataRequestAPI.Models"> <IFAID>sample string 5</IFAID> <IFAName>sample string 7</IFAName> <access_token>sample string 1</access_token> <dbKey>sample string 6</dbKey> <error>sample string 4</error> <statusCode>sample string 3</statusCode> <statusMessage>sample string 2</statusMessage> </LoginOutputInfo>