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

# List Roles

`GET /api/v1/authz/roles`

List roles. Open to authenticated users so the UI can populate dropdowns.

Paginated via ``limit`` / ``offset`` so a single call cannot return the
entire catalog of roles + their permissions. Stable order is ``(name, id)``
so ``offset`` is deterministic across calls.

## Query parameters

- `is_system` boolean, nullable — Filter by is_system flag
- `name` string, nullable — Substring match on role name
- `limit` integer
- `offset` integer

## Response `200`

Successful Response

- RoleRead[]
  - `created_at` string, date-time, required
  - `created_by` string, uuid, nullable, required
  - `description` string, nullable, required
  - `id` string, uuid, required
  - `is_system` boolean, required
  - `name` string, required
  - `parent_role_id` string, uuid, nullable, required
  - `permissions` string[], required
  - `updated_at` string, date-time, required
  - `workspace_id` string, uuid, nullable, required

## Other responses

- `422` — Validation Error

---

[API](https://skmtc.net/langflow-ai/apis/langflow.md) · [All operations](https://skmtc.net/langflow-ai/apis/langflow/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/langflow-ai/langflow/versions/22962dc5e81b/schema)
