Skip to main content
GET
/
v1
/
actions
Error
A valid request URL is required to generate request examples
{
  "data": [
    {
      "action_id": "<string>",
      "name": "<string>",
      "enabled": true,
      "created_at": "2023-11-07T05:31:56Z"
    }
  ],
  "has_more": true,
  "first_id": "<string>",
  "last_id": "<string>"
}

Authorizations

X-API-Key
string
header
required

Personal Access Token, sent verbatim as pat_<32 chars>. PATs are minted from the Chief settings UI.

Headers

X-Project-Id
string
required

Project identifier scoping the request. Required on every project-scoped public endpoint. Missing or malformed values respond with HTTP 400 and code publicapi.tenancy.project.missing.

Pattern: ^project_[a-z0-9]{20}$

Query Parameters

after_id
string

Plain resource id from the previous response's last_id. Returns rows strictly past that id in the resource's natural sort order. Omit on the first request. Mutually exclusive with before_id.

before_id
string

Plain resource id to paginate backward from. Mutually exclusive with after_id.

limit
integer
default:25

Maximum number of items to return in this page.

Required range: 1 <= x <= 100

Response

Paginated list of actions in the project.

Actions visible in the focused project. The per-project action count is bounded, so has_more is always false today — the envelope matches the chats/assets list shape so clients can normalize.

data
object[]
required
has_more
boolean
required

Always false for actions in v1.

first_id
string

Id of the first action in this page; omitted when empty.

last_id
string

Id of the last action in this page; omitted when empty.