---
title: "List Roles"
method: GET
path: "/api/v1/roles"
tags: ["Team Management"]
---

# List Roles

`GET /api/v1/roles`

Returns all roles available in your organization: the built-in system roles (Admin, Editor, Viewer, Billing) plus your organization's custom roles, each with its resolved permission matrix. Use a role's `role_id` to assign it via invites or member role updates. Requires a global API key.

## Response `200`

Successful response with the list of roles

- object
  - `roles` Role[], required
    - `role_id` string, required — Unique identifier of the role. Usable as `role_id` in invites and member role updates. Built-in system roles use GUID-shaped sentinel IDs (e.g. `00000000-0000-0000-0000-000000000001`), not RFC 4122 UUIDs.
    - `name` string, required — Display name of the role
    - `slug` string, required — Normalized name of the role (e.g. 'admin', 'content-manager')
    - `is_system` boolean, required — Whether this is a built-in system role (Admin, Editor, Viewer, Billing). System roles cannot be edited or deleted.
    - `permissions` PermissionMatrix, required — Per-category access levels for a role. Every category is at least 'view'; categories omitted on create/update default to 'view'.
      - `content` 'none' | 'view' | 'write'
      - `prompts` 'none' | 'view' | 'write'
      - `competitors` 'none' | 'view' | 'write'
      - `analytics` 'none' | 'view' | 'write'
      - `integrations` 'none' | 'view' | 'write'
      - `brand_knowledge` 'none' | 'view' | 'write'
      - `team` 'none' | 'view' | 'write'
      - `billing` 'none' | 'view' | 'write'
      - `api` 'none' | 'view' | 'write'
      - `organization` 'none' | 'view' | 'write'
    - `created_at` string, required — When the role was created

## Other responses

- `401` — Unauthorized - Invalid or missing API key
- `403` — Forbidden - Global API key required
- `500` — Internal server error

---

[API](https://skmtc.net/athenahq/apis/athenahq-api.md) · [All operations](https://skmtc.net/athenahq/apis/athenahq-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/athenahq/athenahq-api/versions/6c5d71622cb9/schema)
