GET
/
corporations
/
{id}
curl --request GET \
  --url https://base_url/api/v1/corporations/{id} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "b6d009b0-d174-463f-b030-94643c28e209",
    "legal_name": "Acme Corporation"
  },
  "message": "Successfully fetched 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 fetch.

Response

200
application/json
Get one corporation response.
data
object

A corporation registered with Commenda.

message
string
Example:

"Successfully fetched corporation."