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

"Successfully fetched corporation."