Skip to content

Retrieve

Get a single card tokenization
get/v1/tokenizations/{tokenization_token}

Get tokenization

Path Parameters
tokenization_tokenstring
formatuuid
Returns
datatokenstringaccount_tokenstringcard_tokenstringcreated_atstringdpanstringstatusenumtoken_requestor_nameenumtoken_unique_referencestringtokenization_channelenumupdated_atstringdigital_card_art_tokenstringeventsarray of objectpayment_account_reference_idstringTokenization
optional
Request example Request
curl https://api.lithic.com/v1/tokenizations/$TOKENIZATION_TOKEN \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": {
    "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    "account_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    "card_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    "created_at": "2019-12-27T18:11:19.117Z",
    "dpan": "dpan",
    "status": "ACTIVE",
    "token_requestor_name": "AMAZON_ONE",
    "token_unique_reference": "token_unique_reference",
    "tokenization_channel": "DIGITAL_WALLET",
    "updated_at": "2019-12-27T18:11:19.117Z",
    "digital_card_art_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
    "events": [
      {
        "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
        "created_at": "2019-12-27T18:11:19.117Z",
        "result": "APPROVED",
        "type": "TOKENIZATION_2FA"
      }
    ],
    "payment_account_reference_id": "payment_account_reference_id"
  }
}