curl --request POST \
--url https://api.sandbox.tracefinance.com/api/accounts/{accountId}/ubos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"name": "João Silva",
"taxId": {
"value": "12345678909",
"type": "CPF"
},
"address": {
"addressLine1": "Rua das Flores, 100",
"city": "São Paulo",
"state": "SP",
"country": "BR",
"postalCode": "01234-567"
},
"ownershipPercentage": 50
}
'Adds a beneficial owner (UBO) to a company-owned account.
curl --request POST \
--url https://api.sandbox.tracefinance.com/api/accounts/{accountId}/ubos \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'X-Idempotency-Key: <x-idempotency-key>' \
--data '
{
"name": "João Silva",
"taxId": {
"value": "12345678909",
"type": "CPF"
},
"address": {
"addressLine1": "Rua das Flores, 100",
"city": "São Paulo",
"state": "SP",
"country": "BR",
"postalCode": "01234-567"
},
"ownershipPercentage": 50
}
'Documentation Index
Fetch the complete documentation index at: https://tracefinance-docs-withdrawal-beneficiary-events.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
JWT bearer token. Include as Authorization: Bearer <token>. See the Authentication guide for how to obtain one.
API version. Omit to use the default version.
"1"
Unique key to ensure idempotent request processing. Required on all POST, PUT, and PATCH requests.
UUID of the account.
Request body for adding a beneficial owner.
Full legal name of the beneficial owner.
"João Silva"
Tax identifier for the owner or beneficial owner. Validated against the type-specific format rules.
Show child attributes
Show child attributes
Percentage of ownership. Optional.
50
Beneficial owner added.
"b2c3d4e5-f6a7-8901-bcde-f12345678901"
"João Silva"
Tax identifier returned for an owner or beneficial owner.
Show child attributes
Show child attributes
A point-in-time state of a beneficial owner.
Show child attributes
50
Was this page helpful?