Skip to main content
DELETE
/
payout
/
rails
/
customers
/
{customer_id}
/
associated-persons
/
{associated_person_id}
Delete associated person
curl --request DELETE \
  --url http://localhost:4000/v1/payout/rails/customers/{customer_id}/associated-persons/{associated_person_id} \
  --header 'Authorization: <api-key>'
{
  "id": "associated_person_1234567890",
  "email": "[email protected]",
  "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

Authorization
string
header
required

Use this format: ApiKey <your_api_key>

Path Parameters

customer_id
string
required

Bridge customer ID (UUID format)

Example:

"a9c2d4bd-4f7f-4656-848e-ef4d72f9884c"

associated_person_id
string
required

Associated person ID (UUID format)

Example:

"79a03110-f76a-4f62-9212-3f79506657df"

Response

Associated person deleted successfully

id
string
required
Example:

"associated_person_1234567890"

email
string
required
Example:

"[email protected]"

first_name
string
Example:

"John"

last_name
string
Example:

"Smith"

has_ownership
boolean

Indicates if person has ≥25% ownership

Example:

true

has_control
boolean

Indicates if person has control over the business

Example:

true

is_signer
boolean

Indicates if person can authorize transactions

Example:

true

title
string
Example:

"Chief Executive Officer"

relationship_established_at
string
Example:

"2025-05-27T17:55:33.308Z"

created_at
string
Example:

"2025-05-27T17:55:33.308Z"

updated_at
string
Example:

"2025-05-27T17:55:33.308Z"