Skip to main content
POST
Batch create account entity relationships

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

Idempotency-Key
string
required

Unique key to ensure idempotent requests

Maximum string length: 255

Path Parameters

id
string
required

Account ID The ID of the Account object.

Pattern: ^account_\w+$
Example:

"account_xyz123"

Body

application/json

Request body for batch creating entity relationships on an account.

entity_ids
string[]
required

List of entity IDs to associate with the account under the specified relationship type.

Maximum array length: 20

The ID of your entity.

Pattern: ^entity_[^\s]{1,33}$
relationship_type
enum<string>
required

Indicates the type of Entity

Available options:
account_holder,
authorized_signer,
authorized_user

Response

Entity relationships created successfully.

account_id
string
required

The ID of the Account object.

Pattern: ^account_\w+$
Example:

"account_xyz123"

relationship_type
enum<string>
required

Indicates the type of Entity

Available options:
account_holder,
authorized_signer,
authorized_user
entity_ids
string[]
required

List of entity IDs associated with the account under the specified relationship type.

The ID of your entity.

Pattern: ^entity_[^\s]{1,33}$