v5
latestOpenAPI 3.1.02026-07-262421791.5 MBCreate a card order
Creates a new card order. The program field value is retrieved from the retrieve all card programs endpoint.
{% admonition type="warning" %} This request requires an extra field in the header, X-idempotence-uuid. This should be generated and used for any subsequent retries in the event that the initial request fails. {% /admonition %}
When you issue a card under a business profile, the cardholder will automatically default to the business representative.
If the cardholder is not the business representative, create a cardholder personal profile and add the profileId of the cardholder profile to the cardHolderProfileId field on the card order request.
For country-specific address fields and validation rules, see the card address validation guide.
Path parameters
The profile ID (personal or business).
Headers
Idempotency key. Should be generated and used for any subsequent retries.
Optional UUID for correlating requests across systems. If provided, Wise echoes it back in the response. Maximum 36 characters. Learn more.
Request body
Example request
{
"program": "VISA_DEBIT_BUSINESS_UK_1_PHYSICAL_CARDS_API",
"cardHolderName": "John Smith",
"embossedName": "Smith John",
"phoneNumber": "+441234567890",
"address": {
"firstLine": "56 Shoreditch High St",
"secondLine": "The Tea Bldg",
"city": "London",
"postCode": "E1 6JJ",
"country": "GB"
},
"lifetimeLimit": 100,
"cardHolderProfileId": 654321,
"replacementDetails": {
"cardToken": "4a75fdb7-5791-49ac-832c-81c4347e4df0",
"reason": "CARD_DAMAGED"
}
}Response
OK - Card order created successfully.
Example response
{
"id": 142,
"profileId": 123456,
"clientId": "your-client-id",
"cardProgram": {
"name": "VISA_DEBIT_BUSINESS_UK_1_PHYSICAL_CARDS_API",
"scheme": "VISA",
"defaultCurrency": "GBP",
"cardType": "PHYSICAL"
},
"address": {
"firstLine": "56 Shoreditch High St",
"secondLine": "The Tea Bldg",
"city": "London",
"postCode": "E1 6JJ",
"country": "GB"
},
"cardToken": "4dc0be88-903f-49e4-8237-735f1139e3dd",
"creationTime": "2023-07-31T01:43:24.596321434Z",
"modificationTime": "2023-07-31T01:43:24.596321825Z",
"status": "PRODUCED",
"cardHolderName": "John Smith",
"phoneNumber": "+441234567890",
"lifetimeLimit": 100,
"deliveryEstimate": "2023-10-30T07:11:00.848681Z",
"deliveryDetails": {
"deliveryOption": "POSTAL_SERVICE_WITH_TRACKING",
"deliveryVendor": "DHL",
"trackingUrl": "https://www.dhl.com/gb-en/home/tracking/tracking-express.html?submit=1&tracking-id=1999473803",
"trackingNumber": "1999473803"
}
}