GET api/v100/token/{tokenFake}

Get a specific token.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
tokenFake

TokenFake for call UTI Get by ID. The real token must come in the header "token".

string

Required

Headers

NameDescriptionTypeAdditional information
appkey

Ej. abcdefghijk

None.

session

Ej. 1234567890

None.

Body Parameters

None.

Response Information

Resource Description

RsTokens
NameDescriptionTypeAdditional information
cardAlias

Card alias displayed in the mobile application.

string

Required

String length: inclusive between 0 and 25

token

Card Token.

string

Required

String length: inclusive between 0 and 50

fkCurrency

Foreign Key. Currency Identifier.

integer

Required

cardPANPrint

Printable Card PAN data, with masked characters for privacy.

string

Required

String length: inclusive between 0 and 50

cardType

cardType represented by the token.

string

Required

String length: inclusive between 0 and 50

cardTypeID

cardTypeID represented by the token.

integer

Required

cardBalance

Optional balance amount for the token.

string

None.

ListBalance

Optional list of balance amount for the product on this token.

Collection of Balance

None.

currencyISOCode

Currency ISOCode

string

Required

currencySymbol

Currency Symbol

string

Required

status

Card Status.

integer

Required

cardTypeIconURL

URL to the card icon to be displayed by the application

string

Required

String length: inclusive between 0 and 50

result

Includes Result Code Information. See Return Codes Section below. RsResultUsed

Result

Required

Response Formats

application/json, text/json

Sample:
{
  "cardAlias": "sample string 1",
  "token": "sample string 2",
  "fkCurrency": 3,
  "cardPANPrint": "sample string 4",
  "cardType": "sample string 5",
  "cardTypeID": 6,
  "cardBalance": "sample string 7",
  "ListBalance": [
    {
      "Product": "sample string 1",
      "currencySymbol": "sample string 2",
      "Amount": 1.0
    },
    {
      "Product": "sample string 1",
      "currencySymbol": "sample string 2",
      "Amount": 1.0
    }
  ],
  "currencyISOCode": "sample string 8",
  "currencySymbol": "sample string 9",
  "status": 10,
  "cardTypeIconURL": "sample string 11",
  "result": null
}