Access companies that the authenticated user belongs to. Companies are the top-level organizational units that contain clients, projects, and team members.
{
"id": 456,
"title": "Design Studio Inc"
}
| Attribute | Type | Description |
|---|---|---|
| id | integer | Unique identifier for the company |
| title | string | The company's name |
Retrieves a list of companies that the authenticated user has access to.
/api/v1/companies
GET /api/v1/companies
Authorization: Bearer YOUR_ACCESS_TOKEN
Accept: application/json
[
{ "id": 456, "title": "Design Studio Inc" },
{ "id": 457, "title": "Marketing Agency LLC" }
]