GET
/
v2
/
issuing
/
card_holder
curl --request GET \
  --url https://api.sandbox.solidfi.com/v2/issuing/card_holder \
  --header 'api-key: <api-key>'
{
  "total": 1,
  "data": [
    {
      "id": "cah_a120a61f60dfd40fdb07b2e8bcd1f6f0",
      "client_id": "cli_64c6c87ee9d609f36a6f390dc378a4ce",
      "master_account_holder_id": "mah_201e02c581a098a740456c5c19fcfcd6",
      "master_account_id": "mas_743fa071316bc6beaf5dddfd05f49c30",
      "sub_account_holder_id": "sah_5ccfeef0adf0cbe2aa0980d2c9505752",
      "sub_account_id": "sub_bda1e562657c41e553104b10aad3fe70",
      "person": {
        "first_name": "John",
        "last_name": "Doe",
        "id_type": "ssn",
        "id_number": "223902234",
        "date_of_birth": "1974-01-25",
        "phone": "+19418405843",
        "email": "john.doe@gmail.com",
        "address": {
          "line1": "123 Main St",
          "line2": "",
          "city": "New York",
          "state": "NY",
          "country": "US",
          "postal_code": "10001"
        }
      },
      "external_reference_id": "6RPD1QW-W75",
      "purpose": "Ace Sales Rep",
      "ofac": {
        "status": "pass",
        "last_updated_at": "2024-04-01T21:00:00Z"
      },
      "metadata": {
        "designation": "Senior Sales Manager",
        "employee_number": "77"
      },
      "attachments": [
        {
          "label": "Employee Badge",
          "id": "att_a8d2b191fa0e960d8e49a4bfd320e07b",
          "created_at": "2024-04-01T21:00:00Z"
        }
      ],
      "status": "activated",
      "timestamps": {
        "created_at": "2024-04-01T21:00:00Z",
        "updated_at": "2024-04-02T21:00:00Z",
        "deactivated_at": "2024-04-02T21:00:00Z"
      }
    }
  ],
  "has_more": "true",
  "starting_after": "Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky",
  "ending_before": "Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky"
}

Headers

api-key
string
required

API key is required to call Solid APIs. You can view and manage your API keys in the Solid dashboard.

Example:

"{{api_key}}"

Query Parameters

master_account_id
string

unique id of the master account

Example:

"mas_743fa071316bc6beaf5dddfd05f49c30"

limit
number

number of records to return

Example:

10

starting_after
string

A cursor for use in pagination. starting_after is an ID that defines your place in the list. For instance, if you make a list request and receive 50 records, ending with Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky, your subsequent call can include starting_after=Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky in order to fetch the next page of the list.

Example:

"Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky"

ending_before
string

A cursor for use in pagination. ending_before is an ID that defines your place in the list. For instance, if you make a list request and receive 50 records, starting with Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky, your subsequent call can include ending_before= Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky in order to fetch the previous page of the list.

Example:

"Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky"

Response

200
application/json
List all Card Holders
total
number

total number of records

Example:

1

data
object[]
has_more
enum<string>

if there are more records to iterate or not

Available options:
true,
false
Example:

"true"

starting_after
string

A cursor for use in pagination. starting_after is an ID that defines your place in the list. For instance, if you make a list request and receive 50 records, ending with Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky, your subsequent call can include starting_after=Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky in order to fetch the next page of the list.

Example:

"Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky"

ending_before
string

A cursor for use in pagination. ending_before is an ID that defines your place in the list. For instance, if you make a list request and receive 50 records, starting with Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky, your subsequent call can include ending_before= Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky in order to fetch the previous page of the list.

Example:

"Y2xpXzAxOGY4NjEzMDEyYjdlNTFiOTZjNmVlYWJiNmRiZTky"