POST
/
v1
/
onboard
cURL
curl --request POST \
  --url http://localhost/v1/onboard \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: <api-key>' \
  --data '
{
  "name": "<string>",
  "legalName": "<string>",
  "country": "<string>",
  "taxId": "<string>",
  "phone": "<string>",
  "address": "<string>",
  "postalCode": "<string>",
  "city": "<string>"
}
'
{
  "companyId": "<string>",
  "businessEntityId": "<string>",
  "message": "<string>",
  "companyApiKey": "<string>"
}

Authorizations

X-API-Key
string
header
required

API Key provided by Eve Admin Portal. Include this header in all authenticated requests.

Body

application/json
name
string
country
string | null
taxId
string | null
phone
string | null
address
string | null
postalCode
string | null
city
string | null

Response

companyId
string
businessEntityId
string
message
string
companyApiKey
string