POST Polycab/api/Auth/AuthRequest

Request Information

URI Parameters

None.

Body Parameters

AuthRequest
NameDescriptionTypeAdditional 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:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'AuthRequest'.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.