v1

latestOpenAPI 3.1.02026-07-24180245513.9 KB
Account Holders

Create account holder

Create an account holder. Once created, you can create related accounts (internal or external).

post/account_holders

Request body

namestring required

The name of the account holder.

metadataobject

Additional client data in JSON format. See Metadata.

Example request

{
  "name": "PartnerCo SAS",
  "metadata": {
    "property_a": true,
    "property_b": "some text"
  }
}

Response

200

idstring uuid required

The UUID of the account holder.

namestring required

The name of the account holder

objectstring required

Type of the object, account_holder.

created_atstring date-time required

The UTC timestamp of the creation of this account holder.

disabled_atstring date-time

The UTC timestamp of the disabling of this account holder.

metadataobject

Additional client data in JSON format. See Metadata.

Example response

{
  "name": "EndCustomerCo",
  "object": "account_holder",
  "metadata": {
    "property_a": true,
    "property_b": "some text"
  }
}