Create supplementary debit card application

Here you will learn how to create a card application for a supplementary debit card. A supplementary card is created using the same parameters as the main card, unless specified otherwise.

Use case

In this example, we will demonstrate how to create a card application for a supplementary debit card.

Use case data
API parameters with values

Card application type

Account owner details

Cardholder details

Supplementary card will share card limits with main card.

To assign a separate limit to the supplementary card, set "areLimitsShared": false.

Reference to main card.

Sample API call

To create a new supplementary card application, use the following endpoint:

https://card-api.sandbox.tuumplatform.com/api/v3/applications/create

circle-info

Learn more about the create card applicationarrow-up-right endpoint in the Tuum developer portal.

Sample request

The sample request body is as follows:

{
  "applicationTypeCode": "SUPPLEMENTARY_CARD",
  "accountOwner": {
    "personId": "ID-3438",
    "accountOwnerTypeCode": "PRIVATE"
  },
  "cardholder": {
    "personId": "ID-30496",
    "firstName": "Isabell",
    "lastName": "Lacoste"
  },
  "areLimitsShared": true,
  "mainCardId": "C001664282650"
}

Sample response

Below you will find the response to the sample request:

chevron-rightResponsehashtag

Result

The API call returns the full set of card application data, including parameters automatically generated by the Tuum system, as shown below:

Parameter and value
Explanation

"applicationId": "C001664282674"

A new supplementary card application with the ID C001664282674 has been registered in the system.

"statusCode": "COMPLETED"

The card application has been accepted automatically.

Note: Whether a card application requires an acceptance step is determined by the configuration of the associated card product.

"cardId": "C001664282674"

New card with the ID C001664282674 has been issued.

Last updated

Was this helpful?