GET
/
customers
/
{customerID}
Get a single customer object
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID} \
  --header 'Api-Key: <api-key>'
{
"id": "cust_ind",
"first_name": "John",
"last_name": "Doe",
"email": "johndoe@johndoe.com",
"status": "active",
"type": "individual",
"has_accepted_terms_of_service": true,
"address": {
"street_line_1": "123 Washington St",
"street_line_2": "Apt 2F",
"city": "New York",
"postal_code": "10001",
"state": "NY",
"country": "USA"
},
"rejection_reasons": [],
"requirements_due": [
"external_account"
],
"future_requirements_due": [
"id_verification"
],
"endorsements": [
{
"name": "base",
"status": "approved"
},
{
"name": "sepa",
"status": "incomplete",
"additional_requirements": [
"kyc_with_proof_of_address",
"tos_v2_acceptance"
]
}
],
"created_at": "2020-01-01T00:00:00.000Z",
"updated_at": "2020-01-02T00:00:00.000Z"
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42

Response

200
application/json

Successful customer object response

The response is of type object.