Skip to main content
GET
/
external_cards
List External Cards
curl --request GET \
  --url https://api.synctera.com/v2/external_cards
{
  "external_cards": [
    {
      "bin": "<string>",
      "created_time": "2010-05-06T12:23:34.321Z",
      "currency": "USD",
      "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "expiration_month": "06",
      "expiration_year": "25",
      "id": "<string>",
      "issuer": "<string>",
      "last_four": "1234",
      "last_modified_time": "2010-05-06T12:23:34.321Z",
      "name": "Jean Valjean",
      "status": "ACTIVE",
      "verifications": {
        "address_verification_result": "VERIFIED",
        "cvv2_result": "VERIFIED",
        "name_verification_result": "VERIFIED",
        "pull_details": {
          "country": "US",
          "currency": "USD",
          "network": "<string>",
          "product_type": "CREDIT",
          "regulated": true
        },
        "pull_enabled": true,
        "push_details": {
          "country": "US",
          "currency": "USD",
          "funds_availability": "NOW",
          "network": "<string>",
          "product_type": "CREDIT",
          "regulated": true
        },
        "push_enabled": true,
        "state": "SUCCEEDED"
      }
    }
  ],
  "next_page_token": "a8937a0d"
}

Query Parameters

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

page_token
string

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

Example:

"a8937a0d"

customer_id
string<uuid>[]

The IDs of customers who created the payment schedules. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

business_id
string<uuid>[]

Unique identifier for the business. Multiple IDs can be provided as a comma-separated list.

Example:

"64438afd-fa20-4010-a573-2bbdca77cdb6,84ef251c-ab8f-47a5-bbfd-a16648f95157"

status
enum<string>

Status of an External Card

Available options:
ACTIVE,
SUSPENDED
payment_account_reference
string

A unique identifier associated with a specific cardholder PAN and its affiliated tokens

Required string length: 29

Response

External Card list

external_cards
object[]
required

Array of External Cards

next_page_token
string

If returned, use the next_page_token to query for the next page of results. Not returned if there are no more rows.

Example:

"a8937a0d"