SparrowDesk
Companies

Retrieve a company

GET
/companies/{id}
AuthorizationBearer <token>

In: header

Path Parameters

idinteger

Unique identifier of the company

Response Body

application/json

application/json

application/json

curl -X GET "https://app.sparrowdesk.com/v1/companies/0"
{
  "data": {
    "id": 0,
    "name": "string",
    "domains": [
      "string"
    ],
    "domain": "string",
    "logo": "string",
    "industry": "string",
    "phone": "string",
    "address": "string",
    "notes": "string",
    "other_details": {},
    "total_contacts_linked": 0,
    "created_at": 0,
    "updated_at": 0
  }
}
{
  "error": {
    "message": "Company not found"
  }
}
{
  "error": {
    "message": "Error while retrieving company"
  }
}