POST
/
corporations
curl --request POST \
  --url https://base_url/api/v1/corporations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "legal_name": "Acme Corporation"
}'
{
  "data": {
    "id": "b6d009b0-d174-463f-b030-94643c28e209",
    "legal_name": "Acme Corporation"
  },
  "message": "Successfully created corporation."
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Request body for creating a new corporation.

Response

200
application/json

Sales tax registration response

The response is of type object.