GET
/
customers
/
{customerID}
/
associated_persons
/
{associatedPersonID}
Get a single associated person (Beta)
curl --request GET \
  --url https://api.bridge.xyz/v0/customers/{customerID}/associated_persons/{associatedPersonID} \
  --header 'Api-Key: <api-key>'
{
"id": "associated_person_1234567890",
"email": "associated_person@business.co",
"first_name": "John",
"last_name": "Smith",
"has_ownership": true,
"has_control": true,
"is_signer": true,
"title": "Chief Executive Officer",
"relationship_established_at": "2025-05-27T17:55:33.308Z",
"created_at": "2025-05-27T17:55:33.308Z",
"updated_at": "2025-05-27T17:55:33.308Z"
}

Authorizations

Api-Key
string
header
required

Path Parameters

customerID
string
required

A UUID that uniquely identifies a resource

Required string length: 1 - 42
associatedPersonID
string
required

Unique identifier for an associated person

Required string length: 1 - 42

Response

200
application/json

Successful associated person response

The response is of type object.