Skip to main content
POST
/
cards
Issue a Card
curl --request POST \
  --url https://api.synctera.com/v2/cards \
  --header 'Content-Type: application/json' \
  --data '
{
  "card_details": {
    "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "card_product_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "form": "PHYSICAL"
  },
  "type": "DEBIT"
}
'
{
  "card_details": {
    "form": "PHYSICAL",
    "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "card_product_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "creation_time": "2010-05-06T12:23:34.321Z",
    "emboss_name": {
      "line_1": "Jane Smith",
      "line_2": "Acme Inc."
    },
    "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "shipping": {
      "address": {
        "address_line_1": "<string>",
        "address_line_2": "<string>",
        "city": "<string>",
        "country_code": "<string>",
        "postal_code": "<string>",
        "state": "<string>"
      },
      "care_of_line": "<string>",
      "is_expedited_fulfillment": true,
      "method": "LOCAL_MAIL",
      "phone_number": "+14374570680",
      "recipient_name": {
        "first_name": "Jane",
        "last_name": "Smith",
        "middle_name": "Anne"
      }
    },
    "card_status": "ACTIVE",
    "status_reason": "NEW",
    "card_fulfillment_status": "ISSUED",
    "card_brand": "MASTERCARD",
    "physical_card_format": "MAGNETIC_STRIPE",
    "business_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "expiration_month": "06",
    "expiration_time": "2010-05-06T12:23:34.321Z",
    "expiration_year": "25",
    "is_pin_set": true,
    "last_four": "1234",
    "last_updated_time": "2010-05-06T12:23:34.321Z",
    "metadata": {},
    "reissue_reason": "APPEARANCE",
    "reissued_from_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "reissued_to_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "timestamp_pin_set": "2010-05-06T12:23:34.321Z",
    "bulk_order_config_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "card_image_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
    "memo": "<string>",
    "pending_reasons": {
      "is_waiting_for_bulk_shipment": true,
      "is_waiting_for_image": true,
      "is_waiting_for_pin": true
    },
    "fulfillment_details": {
      "bulk_order_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "ship_date": "2022-07-19",
      "shipping_method": "UPS Next Day Air Saver",
      "tracking_number": "1ZW3268W1319325382"
    },
    "bin": "<string>"
  },
  "tenant": "abcdef_ghijkl",
  "type": "DEBIT"
}

Headers

Idempotency-Key
string

An idempotency key is an arbitrary unique value generated by client to detect subsequent retries of the same request. It is recommended that a UUID or a similar random identifier be used as an idempotency key. A different key must be used for each request, unless it is a retry.

Example:

"7d943c51-e4ff-4e57-9558-08cab6b963c7"

Body

application/json

Card to issue

A card that can spend against a deposit account

card_details
Physical Card · object
required

A request to issue a physical card

Example:
{
"account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"card_product_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
"form": "PHYSICAL"
}
type
enum<string>
required

The type of the card program and BIN

Available options:
DEBIT,
CREDIT,
PREPAID

Response

Card issued

A card that can spend against a deposit account

card_details
Physical Card · object
required

A card that can spend against a deposit account

tenant
string
required

The id of the tenant containing the resource. This is relevant for Fintechs that have multiple workspaces.

Example:

"abcdef_ghijkl"

type
enum<string>
required

The type of the card program and BIN

Available options:
DEBIT,
CREDIT,
PREPAID