Create a card
Create a new card
POST /v1/cards
Create a new virtual or physical card in bankz system
Headers
Name
Value
Content-Type
application/json
Authorization
Bearer <token>
Body
{
"account_id": "YOUR_ACCOUNT_ID",
"card_type": "ChipAndPin", // Use "Virtual" if cardType is not "Physical"
"card_holder_name": "YOUR_CARD_HOLDER_NAME",
"company_name": "YOUR_COMPANY_NAME",
"secure_mobile_number": "YOUR_SECURE_MOBILE_NUMBER",
"sec_pass": "YOUR_SECURE_PASSWORD",
"pin": "YOUR_PIN",
"pin_confirm": "YOUR_PIN_CONFIRM",
"first_name": "YOUR_FIRST_NAME",
"last_name": "YOUR_LAST_NAME",
"delivery_phone_number": "YOUR_DELIVERY_PHONE_NUMBER",
"delivery_company_name": "YOUR_DELIVERY_COMPANY_NAME",
"address_line_1": "YOUR_ADDRESS_LINE_1",
"address_line_2": "YOUR_ADDRESS_LINE_2",
"city": "YOUR_CITY",
"postal_code": "YOUR_POSTAL_CODE",
"country_code": "YOUR_COUNTRY_CODE",
"plan": "StandardLatvianPostMail" // or "DHLExpress" based on delivery option
}Response
Last updated
Was this helpful?