---
title: "List approval actions"
method: GET
path: "/public/v2/workflows/actions/"
tags: ["Approval Policies"]
---

# List approval actions

`GET /public/v2/workflows/actions/`

Retrieve a paginated list of approval actions (history) with filtering options.

## Query parameters

- `workflow_execution_state_id` integer[], nullable
- `record_type` string, nullable
- `record_id` integer[], nullable
- `action_type` string[], nullable
- `approver_id` integer[], nullable
- `start_date` string, date-time, nullable
- `end_date` string, date-time, nullable
- `limit` integer — Number of records to return per page (capped at 100)
- `offset` integer — Number of records to skip before starting to return results

## Response `200`

OK

- PagedPublicApprovalActionSchemaOut
  - `items` PublicApprovalActionSchemaOut[], required
    - `id` integer, required
    - `workflow_execution_state_id` integer, nullable, required
    - `record_id` integer, required
    - `record_type` string, required
    - `approver` PublicApproverSchemaOut, required — Schema for approver information.
      - `id` integer, required
      - `first_name` string, required
      - `last_name` string, required
      - `email` string, required
    - `action_type` string, required
    - `rejection_reason` string, nullable, required
    - `step_name` string, required
    - `step_order` integer, required
    - `substep_order` integer, nullable, required
    - `workflow_version` integer, required
    - `created_at` string, date-time, required
  - `count` integer, required

## Other responses

- `400` — Bad Request
- `500` — Internal Server Error

---

[API](https://skmtc.net/dualentry/apis/dualentry-public-api.md) · [All operations](https://skmtc.net/dualentry/apis/dualentry-public-api/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/dualentry/dualentry-public-api/revisions/bd3299445a5e/schema)
