Companies API

Access companies that the authenticated user belongs to. Companies are the top-level organizational units that contain clients, projects, and team members.

The Company Object

{
  "id": 456,
  "title": "Design Studio Inc"
}

Attributes

Attribute Type Description
id integer Unique identifier for the company
title string The company's name

List Companies

Retrieves a list of companies that the authenticated user has access to.

GET /api/v1/companies

Example Request

GET /api/v1/companies
Authorization: Bearer YOUR_ACCESS_TOKEN
Accept: application/json

Example Response

[
  { "id": 456, "title": "Design Studio Inc" },
  { "id": 457, "title": "Marketing Agency LLC" }
]