Skip to content

List

List digital card art
get/v1/digital_card_art

List digital card art.

Query Parameters
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.

Returns
dataarray of tokenstringcard_program_tokenstringcreatedstringdescriptionstringis_enabledbooleannetworkenumis_card_program_defaultbooleanDigitalCardArt
has_moreboolean

More data exists.

Request example Request
curl https://api.lithic.com/v1/digital_card_art \
    -H "Authorization: $LITHIC_API_KEY"
200 Example
{
  "data": [
    {
      "token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "card_program_token": "182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e",
      "created": "2019-12-27T18:11:19.117Z",
      "description": "description",
      "is_enabled": true,
      "network": "MASTERCARD",
      "is_card_program_default": true
    }
  ],
  "has_more": true
}