Skip to main content
POST
/
entities
Create Entity
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

name
string
required
country
string
required
tax_id
string

Response

Entity created

id
string
required

Unique ID of the entity

name
string
required

Legal name of the entity

country
string
required

Country of registration

tax_id
string

Official tax ID for the entity

is_primary
boolean

Indicates whether this is the primary entity