PATCH
/
external_cards
/
{external_card_id}
Update External Card
curl --request PATCH \
  --url https://api.synctera.com/v1/external_cards/{external_card_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "status": "ACTIVE"
}'
{
  "creation_time": "2010-05-06T12:23:34.321Z",
  "customer_id": "7d943c51-e4ff-4e57-9558-08cab6b963c7",
  "id": "<string>",
  "last_updated_time": "2010-05-06T12:23:34.321Z",
  "status": "ACTIVE",
  "tenant": "abcdef_ghijkl",
  "verifications": {
    "state": "FAILED",
    "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>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

external_card_id
string<uuid>
required

The unique identifier of an external card

Example:

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

Body

application/json

Fields to update

The body is of type object.

Response

200
application/json

External Card details

The response is of type object.