Skip to content

Get Card Token Category Codes

Returns the list of card token category codes.

URL test:

    https://test.lightcms.io/cms/v1/enumeration/cardtokencategorycodes

Method:

GET

Path items:

/enumeration/cardtokencategorycodes

Parameters:

None

Example:

    curl -X GET "https://test.lightcms.io/cms/v1/enumeration/cardtokencategorycodes" \
         -H 'accept: */*'

Responses:

200 - OK

Status Code: 200 OK

[
  {
    "code": "GOOGLE_PAY",
    "description": "Google Pay"
  },
  {
    "code": "APPLE_PAY",
    "description": "Apple Pay"
  },
  {
    "code": "OTHER",
    "description": "Other wallet providers"
  }
]

Parameter Location Type Description
code string Card token category code (e.g., "GOOGLE_PAY").
description string Human‑readable description of the category.
500 - Internal error

Status Code: 500 Internal error

{
  "timestamp": "2025-07-22T13:09:02.348+02:00",
  "status": 500,
  "error": "Internal Server Error",
  "path": "/cms/v1/enumeration/cardtokencategorycodes"
}