Search card designs

Here, you will learn how to search card designs in Tuum.

Use case

In this example, we will demonstrate how to retrieve all the card designs, along with their descriptions.

Sample API call

To access a list of card design codes, use the following endpoint:

https://card-api.sandbox.tuumplatform.com/api/v1/cards/designs

Learn more about the search card designs endpoint in the Tuum developer portal.

Sample request

The sample request body is as follows:

No request body.

Sample response

Below you will find the response to the API request:

Response
{
    "errors": null,
    "validationErrors": null,
    "data": [
        {
            "designCode": "XXX",
            "description": null
        },
        {
            "designCode": "XX",
            "description": null
        },
        {
            "designCode": "444",
            "description": null
        },
        {
            "designCode": "01",
            "description": "Sample card design"
        },
        {
            "designCode": "11",
            "description": null
        },
        {
            "designCode": "12",
            "description": null
        },
        {
            "designCode": "123",
            "description": "Ctsissios"
        },
        {
            "designCode": "GA1",
            "description": "GADESIGN"
        },
        {
            "designCode": "ASD",
            "description": "Example design"
        },
        {
            "designCode": "001",
            "description": "Sample card design Balo Test 1"
        },
        {
            "designCode": "GLD",
            "description": "VISA Gold for private persons"
        }
    ]
}

Result

The list of existing card design codes has been retrieved.

Last updated

Was this helpful?