Skip to content

Update Digital Card Art

Update digital card art for a card tokenization
post/v1/tokenizations/{tokenization_token}/update_digital_card_art

This endpoint is used update the digital card art for a digital wallet tokenization. A successful response indicates that the card network has updated the tokenization's art, and the tokenization's digital_cart_art_token field was updated. The endpoint may not be used on tokenizations with status DEACTIVATED. Note that this updates the art for one specific tokenization, not all tokenizations for a card. New tokenizations for a card will be created with the art referenced in the card object's digital_card_art_token field. Reach out at lithic.com/contact for more information.

Path Parameters
tokenization_tokenstring
formatuuid
Body Parameters
digital_card_art_tokenstring
optional

Specifies the digital card art to be displayed in the user’s digital wallet for a tokenization. This artwork must be approved by the network and configured by Lithic to use. See Flexible Card Art Guide.

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/update_digital_card_art \
    -H 'Content-Type: application/json' \
    -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"
  }
}