v1

latestOpenAPI 3.0.02026-07-247150151.6 KB
Cards

Create a card

Creates a new card and card account

post/cards

Request body

account_idstring required

account_id for which the card will be associated to

credit_limitstring

credit_limit for the card. Provide only when creating commercial secured cards.

card_design_idstring

The visual design of card. Please contact Support to start creating card designs.

Example request

{
  "account_id": "1c667427-5521-4ffd-ac59-16ab73dc133e",
  "credit_limit": "100.00",
  "card_design_id": "12",
  "card_mailing_address": {
    "street": "345 California Ave.",
    "street2": "Suite 600",
    "city": "San Francisco",
    "state": "CA",
    "zip_code": "12345-1234",
    "country": "US"
  }
}

Response

Created

card_idstring
customer_idstring nullable
account_idstring nullable
business_idstring nullable
card_numberstring
cvvstring
expiry_datestring
last_fourstring
status'active' | 'inactive' | 'closed'
card_design_idstring

The visual design of card. Please contact Support to start creating card designs.

date_updatedstring
date_createdstring
date_physical_card_activatedstring

Example response

{
  "card_id": "057c6074-a02d-4a5a-bad9-bbc64b047df7",
  "customer_id": "c8940088-21e8-451c-987c-0a0398db3ee5",
  "account_id": "26bdeb70-157c-4c44-a04a-3727793b9779",
  "business_id": "f65f3ff2-ff5a-46a0-a277-b5892aa5a690",
  "card_number": "tok_live_q7kwTYb5YCYznpgRHHTs9p",
  "cvv": "tok_live_c94od3AsFWYQ1ecaaMYtFU",
  "expiry_date": "tok_live_7g3eARzeEBJw89rJRCHqHv",
  "last_four": "6270",
  "status": "active",
  "card_design_id": "12",
  "date_updated": "2020-08-16T19:39:34Z",
  "date_created": "2020-08-16T19:39:34Z"
}