GET
/
external_cards
/
transfers
List External Transfers
curl --request GET \
  --url https://api.synctera.com/v1/external_cards/transfers \
  --header 'Authorization: Bearer <token>'
{
  "external_transfers": [
    {
      "card_details": {
        "address_verification_result": "ADDRESS_AND_ZIP_MISMATCH",
        "cvv2_result": "CVV_MISMATCH",
        "name_verification_result": "NAME_MISMATCH",
        "pull_details": {
          "country": "US",
          "currency": "USD",
          "network": "<string>",
          "product_type": "CREDIT",
          "regulated": true
        },
        "pull_enabled": true,
        "push_details": {
          "country": "US",
          "currency": "USD",
          "funds_availability": "FEW",
          "network": "<string>",
          "product_type": "CREDIT",
          "regulated": true
        },
        "push_enabled": true,
        "bin": "<string>",
        "currency": "USD",
        "expiration_month": "06",
        "expiration_year": "25",
        "issuer": "<string>",
        "last_four": "1234",
        "name": "Jean Valjean",
        "payment_account_reference": "<string>"
      },
      "type": "PULL",
      "account_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "amount": 123,
      "creation_time": "2010-05-06T12:23:34.321Z",
      "currency": "USD",
      "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
      "id": "<string>",
      "last_updated_time": "2010-05-06T12:23:34.321Z",
      "merchant": {
        "address": {
          "address_line_1": "100 Main St.",
          "address_line_2": "Suite 99",
          "city": "New York",
          "country_code": "US",
          "postal_code": "49633",
          "state": "NY"
        },
        "email": "alice@example.com",
        "name": "<string>",
        "phone_number": "+14374570680"
      },
      "network_decline_details": "<string>",
      "reason": "<string>",
      "status": "CANCELED",
      "tenant": "abcdef_ghijkl",
      "transaction_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ],
  "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

type
enum<string>

The type of an external transfer

Available options:
APPLE_PAY_PULL,
APPLE_PAY_PULL_REVERSAL,
APPLE_PAY_PUSH,
GOOGLE_PAY_PULL,
GOOGLE_PAY_PULL_REVERSAL,
GOOGLE_PAY_PUSH,
PULL,
PULL_REVERSAL,
PUSH
Example:

"PULL"

originating_account_id
string<uuid>[]

The unique identifier of an originating account

customer_id
string<uuid>[]

The unique identifier of a customer

external_card_id
string<uuid>

The ID of the External Card associated with the operation

Example:

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

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

Response

200
application/json

External Card Transfer list

The response is of type object.