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.
Card application type
"applicationTypeCode": "SUPPLEMENTARY_CARD"
Account owner details
"accountOwner": {
"personId": "ID-3438",
"accountOwnerTypeCode": "PRIVATE"
}
Cardholder details
"cardholder": {
"personId": "ID-30496",
"firstName": "Isabel",
"lastName": "Lacoste"
}
Supplementary card will share card limits with main card.
To assign a separate limit to the supplementary card, set "areLimitsShared": false
.
"areLimitsShared": true
Reference to main card.
"mainCardId": "C001664282650"
Sample API call
To create a new supplementary card application, use the following endpoint:
https://card-api.sandbox.tuumplatform.com/api/v3/applications/create
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:
Result
The API call returns the full set of card application data, including parameters automatically generated by the Tuum system, as shown below:
"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?