---
title: "List actions"
method: GET
path: "/actions"
tags: ["Actions"]
---

# List actions

`GET /actions`

Return a paginated list of actions. Supports filtering by `service`, free-text `search`, and ordering by name, createdAt, or updatedAt.

## Query parameters

- `page` integer
- `pageSize` integer
- `service` 'tasks_api' | 'devices_api' | 'agents_api' | 'webhooks'
- `search` string
- `orderBy` 'name' | 'createdAt' | 'updatedAt'
- `orderByDirection` 'asc' | 'desc'

## Response `200`

List actions

- object
  - `items` Action[], required
    - `id` string, uuid, required
    - `userId` string, uuid, required — Deprecated: use ownerId (tenancy) / createdBy (actor).
    - `ownerId` string, uuid, required
    - `createdBy` string, uuid, nullable, required
    - `catalogEntryId` string, uuid, required
    - `name` string, required
    - `description` string, nullable, required
    - `service` 'tasks_api' | 'devices_api' | 'agents_api' | 'webhooks', required
    - `method` string, required
    - `params` unknown
    - `paramsSchema` unknown
    - `createdAt` string, nullable, required
    - `updatedAt` string, nullable, required
  - `pagination` Pagination, required
    - `hasNext` boolean, required
    - `hasPrev` boolean, required
    - `page` integer, required
    - `pageSize` integer, required
    - `pages` integer, required
    - `total` integer, required

---

[API](https://skmtc.net/mobilerun/apis/workflows.md) · [All operations](https://skmtc.net/mobilerun/apis/workflows/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/mobilerun/workflows/revisions/1bc499aa8f99/schema)
