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

# List stored actions

`GET /actions/v1/stored-actions`

Stored Actions endpoints handle the creation, execution, updates, and deletions
of single created actions.

## Response `200`

Success: Includes all the Stored Actions for the caller. This could be an empty list.

- StoredActionRecordListResponse
  - `results` StoredActionRecord[], required — Stored actions belonging to the caller.
    - `connection_id` string, uuid — UUID identifying the connection to use when executing a Stored Action.
    - `selected_api` string — Something like `SlackAPI` (for Python apps) or `SplitwiseCLIAPI@1.0.0` (for CLI apps). Non-public apps are fine as long as the authed user can access them. If a version is included we attempt to use that version of the integration. If no version is provided we attempt to use the latest version of the integration
    - `action_key` string — Name of the action in the integration. Such as `new_contact`.
    - `action_type` 'action' — * `action` - action
    - `inputs` unknown
    - `id` string, uuid, required — The UUID id that identifies this stored action and can be used to execute the stored procedure by calling the POST /stored-actions/{stored_action_id}/run endpoint.
    - `type` string — Specifies the resource type, as required by the JSON:API specification.
  - `meta` StoredActionRecordListMeta, required — Limit-offset pagination metadata for a Stored Action list response.
    - `limit` integer, required — Number of results returned in this response.
    - `offset` integer, required — Starting index for this page of results.
    - `count` integer, required — Total number of results across all pages.
  - `links` StoredActionRecordListLinks, required — Pagination navigation links for a Stored Action list response.
    - `next` string, uri, nullable, required — Link to the next page of results; null when on the last page.

## Other responses

- `400` — Indicates an error executing the request to list Stored Actions.
- `403` — Permission denied. Unauthorized request.
- `429` — Too many requests.
- `500` — Internal Server Error
- `503` — Service Unavailable

---

[API](https://skmtc.dev/zapier/apis/trigger-inbox-api.md) · [All operations](https://skmtc.dev/zapier/apis/trigger-inbox-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/zapier/trigger-inbox-api/revisions/3fc4c2846ba1/schema)
