POST
/
corporations
/
{id}
curl --request POST \
  --url https://base_url/api/v1/corporations/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "legal_name": "Commenda Technologies Pvt. Ltd."
}'
{
  "message": "Successfully updated corporation."
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

The unique identifier of the corporation to update.

Body

application/json

The legal name of the corporation.

Example:

"Commenda Technologies Pvt. Ltd."

Response

200
application/json
Update one corporation response.
message
string
Example:

"Successfully updated corporation."