POST api/v1/auth/vendor_id/check

Request Information

URI Parameters

None.

Body Parameters

TokenRequest
NameDescriptionTypeAdditional information
WindowsAuthentication

boolean

None.

client_id

string

None.

vendor_id

string

None.

client_secret

string

None.

registration

integer

None.

scope

string

None.

username

string

None.

password

string

None.

grant_type

string

None.

refresh_token

string

None.

Request Formats

application/json, text/json

Sample:
{
  "WindowsAuthentication": true,
  "client_id": "sample string 2",
  "vendor_id": "sample string 3",
  "client_secret": "sample string 4",
  "registration": 5,
  "scope": "sample string 6",
  "username": "sample string 7",
  "password": "sample string 8",
  "grant_type": "sample string 9",
  "refresh_token": "sample string 10"
}

application/xml, text/xml

Sample:
<TokenRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/IO.Swagger.Models">
  <WindowsAuthentication>true</WindowsAuthentication>
  <client_id>sample string 2</client_id>
  <client_secret>sample string 4</client_secret>
  <grant_type>sample string 9</grant_type>
  <password>sample string 8</password>
  <refresh_token>sample string 10</refresh_token>
  <registration>5</registration>
  <scope>sample string 6</scope>
  <username>sample string 7</username>
  <vendor_id>sample string 3</vendor_id>
</TokenRequest>

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 'TokenRequest'.

Response Information

Resource Description

boolean

Response Formats

application/json, text/json

Sample:
true

application/xml, text/xml

Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>