v1

latestOpenAPI 3.1.02026-07-136388308.2 KB
Debit Cards

Create a new Fire debit card

This endpoint allows you to create a debit card to be linked to your Fire account. You can create multiple debit cards which can be linked to your Fire accounts. You will need to enable PERM_BUSINESS_POST_CARDS to use this endpoint.

post/v1/cards

Request body

userIdinteger
cardPinstring
eurIcaninteger
gbpIcaninteger
addressType'HOME' | 'BUSINESS'
acceptFeesAndChargesboolean

Example request

{
  "userId": 3245,
  "eurIcan": 2150,
  "gbpIcan": 2152,
  "addressType": "BUSINESS",
  "acceptFeesAndCharges": true
}

Response

Card created successfully

cardIdinteger
maskedPanstring
expiryDatestring date-time
status'CREATED_ACTIVE' | 'CREATED_INACTIVE'

Example response

{
  "cardId": 51,
  "maskedPan": "537455******1111",
  "expiryDate": "2019-01-31T00:00:00.000Z",
  "status": "CREATED_ACTIVE"
}