Entity represents the legal owner of your accounts. It defines the ownership and identity information used in transfers. The Entity has the following attributes:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Entity represents the legal owner of your accounts. It defines the ownership and identity information used in transfers. The Entity has the following attributes:
| Attribute | Type | Description |
|---|---|---|
id | string | Unique identifier for the Entity. |
object | string | Type of object, always entity. |
holder_id | string | Unique identifier for the entity’s legal owner. |
holder_name | string | Legal name of the entity’s owner. |
is_root | boolean | If true, the Entity is the main entity in your organization’s structure. |
mode | string | API mode for the Entity. One of test or live. |
{
"id": "ent_4324qwkalsds",
"object": "entity",
"holder_id": "000000000",
"holder_name": "ACME Inc.",
"is_root": true,
"mode": "test"
}
Was this page helpful?