POST
/
entities
curl --request POST \
  --url https://api.antei.com/entities \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "country": "<string>",
  "tax_id": "<string>"
}'
{
  "id": "<string>",
  "name": "<string>",
  "country": "<string>",
  "tax_id": "<string>",
  "is_primary": true
}

This endpoint creates a new subsidiary entity under your account. You’ll need to provide the legal name and country of registration. Tax ID is optional.

Authorizations

Authorization
string
header
required

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

Body

application/json

Entity data

The body is of type object.

Response

201
application/json

Entity created

The response is of type object.