POST Polycab/api/Auth/AuthRequest
Request Information
URI Parameters
None.
Body Parameters
AuthRequest| Name | Description | Type | Additional information |
|---|---|---|---|
| GrantType | string |
None. |
|
| ClientId | string |
None. |
|
| ClientSecret | string |
None. |
|
| Username | string |
None. |
|
| Password | string |
None. |
Request Formats
application/json, text/json
Sample:
{
"GrantType": "sample string 1",
"ClientId": "sample string 2",
"ClientSecret": "sample string 3",
"Username": "sample string 4",
"Password": "sample string 5"
}
application/xml, text/xml
Sample:
<AuthRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Polycab.Model"> <ClientId>sample string 2</ClientId> <ClientSecret>sample string 3</ClientSecret> <GrantType>sample string 1</GrantType> <Password>sample string 5</Password> <Username>sample string 4</Username> </AuthRequest>
application/x-www-form-urlencoded
Sample:
Response Information
Resource Description
IHttpActionResultNone.
Response Formats
application/json, text/json, application/xml, text/xml
Sample:
Sample not available.