GET
/
companies
/
{id}
curl --request GET \
  --url http://staging.api.commenda.io/api/v1/companies/{id} \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "name": "Initech"
}

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 company to retrieve.

Response

200
application/json
A single company
id
string

Unique identifier for this company.

name
string

The company's name.

Example:

"Initech"