Skip to content

List

Get a card's tokenizations
get/v1/tokenizations

List card tokenizations

Query Parameters
account_tokenstring
optional

Filters for tokenizations associated with a specific account.

formatuuid
beginstring
optional

Filter for tokenizations created after this date.

formatdate
card_tokenstring
optional

Filters for tokenizations associated with a specific card.

formatuuid
endstring
optional

Filter for tokenizations created before this date.

formatdate
ending_beforestring
optional

A cursor representing an item's token before which a page of results should end. Used to retrieve the previous page of results before this item.

page_sizenumber
optional

Page size (for pagination).

maximum100
minimum1
starting_afterstring
optional

A cursor representing an item's token after which a page of results should begin. Used to retrieve the next page of results after this item.

tokenization_channelenum
optional
Accepts one of the following: "DIGITAL_WALLET", "MERCHANT", "ALL"

Filter for tokenizations by tokenization channel. If this is not specified, only DIGITAL_WALLET tokenizations will be returned.

Hide ParametersShow Parameters
"DIGITAL_WALLET"
"MERCHANT"
"ALL"
Returns
dataarray of tokenstringaccount_tokenstringcard_tokenstringcreated_atstringdpanstringstatusenumtoken_requestor_nameenumtoken_unique_referencestringtokenization_channelenumupdated_atstringdigital_card_art_tokenstringeventsarray of objectpayment_account_reference_idstringTokenization
optional
has_moreboolean
optional
Request example Request
curl https://api.lithic.com/v1/tokenizations \
    -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"
    }
  ],
  "has_more": true
}