---
title: "List Company Departments"
method: GET
path: "/v1/company-departments"
tags: ["Departments"]
---

# List Company Departments

`GET /v1/company-departments`

Lists all departments for the authorized company specified in the request.


## Scopes

| Category | Read only Scope | Write only Scope (read access implicit) |
|---|---|---|
| Manage company resources (`company_admin`) | View departments (`company_department:read`) | Manage departments (`company_department:write`) |

## Query parameters

- `company_id` string, required
- `paginate` boolean
- `page` integer
- `page_size` integer

## Response `200`

Success

- ListCompanyDepartmentsPaginatedResponse
  - `current_page` integer, required
  - `data` object, required
    - `company_departments` CompanyDepartment[], required
      - `company_id` string, required — The unique identifier (UUID) of the company this department belongs to.
      - `id` string, uuid, required — The unique identifier (UUID) of the department.
      - `name` string, required — The name of the department (e.g., "Marketing", "Engineering").
  - `total_count` integer, required
  - `total_pages` integer, required

## Other responses

- `404` — Not Found
- `422` — Unprocessable Entity

---

[API](https://skmtc.net/remote-com/apis/remote.md) · [All operations](https://skmtc.net/remote-com/apis/remote/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/remote-com/remote/revisions/7e6a0c61ac82/schema)
