GET
/
cards
/
products
List Card Products
curl --request GET \
  --url https://api.synctera.com/v1/cards/products \
  --header 'Authorization: Bearer <token>'
{
  "card_products": [
    {
      "active": true,
      "bin_country": "US",
      "bulk_shipping_enabled": false,
      "bypass_risk_errors": true,
      "card_brand": "MASTERCARD",
      "card_category": "COMMERCIAL",
      "card_fulfillment_country": "US",
      "card_fulfillment_provider": "ARROWEYE",
      "card_program_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "card_type": "CREDIT",
      "color": "<string>",
      "creation_time": "2010-05-06T12:23:34.321Z",
      "cross_border_enabled": false,
      "digital_wallet_tokenization": {
        "card_art_id": "<string>",
        "provisioning_controls": {
          "in_app_provisioning": {
            "address_verification": {
              "validate": false
            },
            "enabled": true
          },
          "manual_entry": {
            "address_verification": {
              "validate": false
            },
            "enabled": true
          },
          "wallet_provider_card_on_file": {
            "address_verification": {
              "validate": false
            },
            "enabled": true
          },
          "web_push_provisioning": {
            "apple_card_template_id": "<string>",
            "apple_partner_id": "<string>",
            "google_piaid": "<string>"
          }
        }
      },
      "end_date": "2050-06-07T21:32:43.321Z",
      "id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "image": true,
      "image_mode": "REQUIRED_APPROVED_FIRST",
      "issue_without_kyc": true,
      "l2l3_enabled": false,
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "name": "<string>",
      "notification_language": "ces",
      "offline_pin": true,
      "orientation": "HORIZONTAL",
      "package_id": "<string>",
      "physical_card_format": "CHIP",
      "pin_issuance_policy": "NOT_REQUIRED",
      "return_address": {
        "address": {
          "address_line_1": "100 Main St.",
          "address_line_2": "Suite 99",
          "city": "New York",
          "country_code": "US",
          "postal_code": "49633",
          "state": "NY"
        },
        "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"
        }
      },
      "start_date": "2010-05-06T12:23:34.321Z",
      "txn_enhancer": "NONE",
      "form": "PHYSICAL",
      "account_range_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "bin_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "tenant": "abcdef_ghijkl",
      "three_ds_policy": "DECISION_GATEWAY"
    }
  ],
  "next_page_token": "a8937a0d"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Query Parameters

card_brand
enum<string>

The brand of a card product

Available options:
MASTERCARD,
VISA
form
enum<string>

The format of the card

Available options:
PHYSICAL,
VIRTUAL
page_token
string

Optional pagination token to be provided to retrieve subsequent pages, returned from previous get

Example:

"a8937a0d"

limit
integer
default:100

Maximum number of objects to return per page. If the limit is greater than 100, then it will be set to 100.

Required range: x >= 1
Example:

100

sort_by
enum<string>[]

Specifies the sort order for the returned card products.

Response

200
application/json

List of available Card Products

The response is of type object.