PUT
/
associated_persons
/
{associatedPersonID}
Update a single associated person
curl --request PUT \
  --url https://api.bridge.xyz/v0/associated_persons/{associatedPersonID} \
  --header 'Api-Key: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "first_name": "<string>",
  "middle_name": "<string>",
  "last_name": "<string>",
  "transliterated_first_name": "<string>",
  "transliterated_middle_name": "<string>",
  "transliterated_last_name": "<string>",
  "email": "<string>",
  "phone": "<string>",
  "residential_address": {
    "street_line_1": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "subdivision": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "transliterated_residential_address": {
    "street_line_1": "<string>",
    "street_line_2": "<string>",
    "city": "<string>",
    "subdivision": "<string>",
    "postal_code": "<string>",
    "country": "<string>"
  },
  "birth_date": "<string>",
  "has_ownership": true,
  "has_control": true,
  "is_signer": true,
  "is_director": true,
  "title": "<string>",
  "ownership_percentage": 123,
  "attested_ownership_structure_at": "<string>",
  "relationship_established_at": "<string>",
  "verified_selfie_at": "<string>",
  "completed_customer_safety_check_at": "<string>",
  "identifying_information": [
    {
      "type": "drivers_license",
      "issuing_country": "<string>",
      "number": "<string>",
      "description": "<string>",
      "expiration": "<string>",
      "image_front": "<string>",
      "image_back": "<string>"
    }
  ],
  "documents": [
    {
      "purposes": [
        "proof_of_account_purpose"
      ],
      "file": "<string>",
      "description": "<string>"
    }
  ]
}'
{
  "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

associatedPersonID
string
required

Unique identifier for an associated person

Required string length: 1 - 42

Body

application/json

Associated person data to update

The body is of type object.

Response

200
application/json

Updated associated person

The response is of type object.