v1

latestOpenAPI 3.0.32026-07-248079274.0 KB
Cards

Get customer cards

Retrieve a list of all cards belonging to a customer. All cards are associated to the customer_id.

get/customers/{customer_id}/cards

Path parameters

customer_idstring uuid required

Unique ID assigned by Acquired.com for the customer.

Query parameters

offsetinteger

The record to start the response on.

limitinteger

A limit on the scope of values returned in the response.

filterstring

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

Response

OK

Example response

{
  "meta": {
    "links": [
      {
        "rel": "first",
        "href": "/v1/path?offset=0",
        "title": "first page"
      }
    ]
  },
  "data": [
    {
      "card": {
        "holder_name": "E Johnson",
        "scheme": "visa",
        "number": "8710",
        "expiry_month": 10,
        "expiry_year": 30
      },
      "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
    }
  ]
}