Find card application by ID

Here, you will learn how to retrieve a specific card application by its ID in Tuum.

Use case

In this example, we will demonstrate how to access a card application using its ID.

Use case data
API parameters with values

Find the card application by ID C001664282675.

...applications/C001664282675

Sample API call

To find card application by its ID, use the following endpoint:

https://card-api.sandbox.tuumplatform.com/api/v2/applications/{applicationId}

Learn more about the find card application by id endpoint in the Tuum developer portal.

Sample request

Here is a sample API request for retrieving card renewal details:

No request body.

Sample response

Below you will find the response to the API request:

Response
{
    "errors": null,
    "validationErrors": null,
    "data": {
        "applicationId": "C001664282675",
        "applicationTypeCode": "NEW_CARD",
        "statusCode": "COMPLETED",
        "productCode": "INTERNAL_ACCOUNT_VIRTUAL_M",
        "cardId": "C001664282675",
        "mainCardId": null,
        "currencyCode": "EUR",
        "priceListCode": "DEBIT_CARD",
        "issuingCountryCode": "EE",
        "designCode": "11",
        "areLimitsShared": true,
        "applicationDate": "2025-10-09",
        "isExpressCard": false,
        "orderPlastic": false,
        "productScheme": "MASTERCARD",
        "productClass": "DEBIT",
        "pinDeliveryMethod": "DIGIPIN",
        "servicingAccount": null,
        "accountOwner": {
            "personId": "ID-30583",
            "accountOwnerTypeCode": null
        },
        "cardholder": {
            "personId": "ID-30583",
            "firstName": "Jane",
            "lastName": "Tuum",
            "companyName": null
        },
        "shippingAddress": null,
        "shippingPhone": {
            "phoneCountryCode": "+39",
            "phoneNumber": "8901234"
        },
        "creditConditions": null,
        "usageGroupName": "ALL_ALLOWED",
        "limitGroupName": "HIGH_LIMIT_GROUP",
        "mccGroupName": null,
        "xpaysAllowed": true
    }
}

Result

The API response returns a dataset containing the card application details, including parameters generated by the Tuum system.

Last updated

Was this helpful?