POST api/auth/token
Request Information
URI Parameters
None.
Body Parameters
AuthModel| Name | Description | Type | Additional information |
|---|---|---|---|
| Username | string |
None. |
|
| Password | string |
None. |
|
| Refresh_Token | string |
None. |
|
| Grant_Type | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"username": "sample string 1",
"password": "sample string 2",
"refresh_Token": "sample string 3",
"grant_Type": "sample string 4"
}
application/xml, text/xml
Sample:
<AuthModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Exhibition.Models"> <Grant_Type>sample string 4</Grant_Type> <Password>sample string 2</Password> <Refresh_Token>sample string 3</Refresh_Token> <Username>sample string 1</Username> </AuthModel>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.