GET api/v1/IframeToken?tokenId={tokenId}

Get an IframeToken

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tokenId

Token Id

globally unique identifier

Required

Body Parameters

None.

Response Information

Resource Description

An IframeToken if it has not expired

ReadIframeTokenDto
NameDescriptionTypeAdditional information
Id

The ID of the IframeToken

globally unique identifier

None.

AccountId

The ID of the account this token is associated with

integer

None.

AdministratorId

The ID of the administrator this token is associated with

integer

None.

AdministratorEmail

The email of the administrator this token is associated with

string

None.

StoreIds

List of store IDs this token is associated with

Collection of integer

None.

Rights

List of Rights this administrator has

Collection of string

None.

GroupId

Id of the Group

integer

None.

TimeZoneId

Time Zone ID of the account

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Id": "a49d9a44-41bb-4824-9361-b7525feeaafa",
  "AccountId": 2,
  "AdministratorId": 3,
  "AdministratorEmail": "sample string 4",
  "StoreIds": [
    1,
    2
  ],
  "Rights": [
    "sample string 1",
    "sample string 2"
  ],
  "GroupId": 5,
  "TimeZoneId": "sample string 6"
}