POST api/Token/V2
Request Information
URI Parameters
None.
Body Parameters
AuthMemberLoginModelV2| Name | Description | Type | Additional information |
|---|---|---|---|
| loginid | string |
None. |
|
| password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"loginid": "sample string 1",
"password": "sample string 2"
}
application/xml, text/xml
Sample:
<AuthMemberLoginModelV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AuEAuth_WebAPI.Models.V2"> <loginid>sample string 1</loginid> <password>sample string 2</password> </AuthMemberLoginModelV2>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
TokenModelV2| Name | Description | Type | Additional information |
|---|---|---|---|
| token | string |
None. |
|
| exp | integer |
None. |
Response Formats
application/json, text/json
Sample:
{
"token": "sample string 1",
"exp": 2
}
application/xml, text/xml
Sample:
<TokenModelV2 xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AuEAuth_WebAPI.Models.V2"> <exp>2</exp> <token>sample string 1</token> </TokenModelV2>