Updates the details of an existing corporation. Only the fields provided in the request will be updated.
Unique identifier of the corporation to update.
Legal name of the entity, including the type suffix (e.g., “Inc.”, “LLC”).
Jurisdiction where the corporation is registered (e.g., “US”, “CA”).
Custom email alias for the corporation.
Unique identifier for the corporation.
Legal name of the entity, including the type suffix.
Unix timestamp of when the corporation was created.
Jurisdiction of the corporation.
Email alias for the corporation.
curl --request POST \
--url 'https://transaction-tax.api.in.commenda.io/api/v1/corporations/corp_123abc' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"legal_name": "Acme Corporation LLC",
"jurisdiction": "US"
}'
{
"message": "Corporation updated successfully.",
"data": {
"id": "corp_123abc",
"legal_name": "Acme Corporation LLC",
"created_at": 1704067200,
"jurisdiction": "US",
"email_alias": "acme@filings.commenda.io"
}
}
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
The unique identifier of the corporation to update.
Request body for updating a corporation.
The legal name of the corporation.
Update one corporation response.
Example:"Successfully updated corporation."