cURL
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." }
Create a new corporation for a sales tax partner.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Request body for creating a new corporation.
The legal name of the corporation.
"Acme Corporation"
Sales tax registration response
A corporation registered with Commenda.
Show child attributes
The unique identifier for a corporation.
"b6d009b0-d174-463f-b030-94643c28e209"
"Successfully created corporation."