POST api/STBEva/GetAccessToken

Request Information

URI Parameters

None.

Body Parameters

EVARequestModel
NameDescriptionTypeAdditional information
ClientId

string

None.

ClientSecert

string

None.

webUrl

string

None.

accessToken

string

None.

RequestObject

Object

None.

Request Formats

application/json, text/json

Sample:
{
  "ClientId": "sample string 1",
  "ClientSecert": "sample string 2",
  "webUrl": "sample string 3",
  "accessToken": "sample string 4",
  "RequestObject": {}
}

application/xml, text/xml

Sample:
<EVARequestModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CheckinPortalCloudAPI.Models.EVA">
  <ClientId>sample string 1</ClientId>
  <ClientSecert>sample string 2</ClientSecert>
  <RequestObject />
  <accessToken>sample string 4</accessToken>
  <webUrl>sample string 3</webUrl>
</EVARequestModel>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

EVAResponseModel
NameDescriptionTypeAdditional information
result

boolean

None.

responseMessage

string

None.

Response

Object

None.

ResponseCode

string

None.

Response Formats

application/json, text/json

Sample:
{
  "result": true,
  "responseMessage": "sample string 2",
  "Response": {},
  "ResponseCode": "sample string 4"
}

application/xml, text/xml

Sample:
<EVAResponseModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/CheckinPortalCloudAPI.Models.EVA">
  <Response />
  <ResponseCode>sample string 4</ResponseCode>
  <responseMessage>sample string 2</responseMessage>
  <result>true</result>
</EVAResponseModel>