v1

latestOpenAPI 3.0.32026-07-248079274.0 KB
Cards

Get card details

Retrieve all the details of a specific card by adding the relating card_id to the URL.

get/cards/{card_id}

Path parameters

card_idstring uuid required

Unique ID assigned by Acquired.com for the card.

Query parameters

filterstring

Filter the parameters that you want to return within the response.

Response

OK

card_idstring uuid

The unique ID assigned by Acquired.com to the card when it is created.

customer_idstring uuid

The unique ID assigned by Acquired.com to the customer when it is created.

source'card' | 'apple_pay' | 'google_pay'

Identifies how the card was created.

createdstring date-time

The date and time that the customer record was created.

last_updatedstring date-time

The date and time the customer record was last updated.

is_activeboolean

Indicates whether a card is active or not.

Example response

{
  "card": {
    "holder_name": "E Johnson",
    "scheme": "visa",
    "number": "8710",
    "expiry_month": 10,
    "expiry_year": 30,
    "network_token": "active"
  },
  "bin": {
    "number": "424242",
    "type": "debit",
    "product": "consumer",
    "card_level": "standard",
    "issuer": "acquired.com",
    "issuer_country": "united kingdom",
    "issuer_country_code": "gb"
  },
  "source": "card",
  "is_active": true
}