POST
/
corporations
curl --request POST \
  --url https://base_url/api/v1/corporations \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "legal_name": "Commenda Technologies Pvt. Ltd."
}'
{
  "data": {
    "id": "2535af08-a139-4d0c-9827-1651e46dfbcf",
    "legal_name": "Commenda Technologies Pvt. Ltd.",
    "created_at": 1727284490
  },
  "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

The legal name of the corporation.

Example:

"Commenda Technologies Pvt. Ltd."

Response

200
application/json
Sales tax registration response
data
object
message
string
Example:

"Successfully created corporation."