POST api/PSAPI/EdenRedToken

Request Information

URI Parameters

None.

Body Parameters

None.

Response Information

Resource Description

EdenRedAuthorizationResponse
NameDescriptionTypeAdditional information
access_token

string

None.

token_type

string

None.

expires_in

string

None.

error

string

None.

error_description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "access_token": "sample string 1",
  "token_type": "sample string 2",
  "expires_in": "sample string 3",
  "error": "sample string 4",
  "error_description": "sample string 5"
}

text/xml

Sample:
<EdenRedAuthorizationResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/PMSBL.Entity">
  <access_token>sample string 1</access_token>
  <error>sample string 4</error>
  <error_description>sample string 5</error_description>
  <expires_in>sample string 3</expires_in>
  <token_type>sample string 2</token_type>
</EdenRedAuthorizationResponse>