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

# List all actions

`GET /v2/actions`

Returns a list of your actions. The actions are returned sorted by creation date by default, with the most recent actions appearing first.

## Query parameters

- `min_created` integer
- `max_created` integer
- `customer_key` string
- `order_by` '-created_at' | 'created_at'
- `limit` integer
- `starting_after` string
- `ending_before` string

## Response `200`

Returns a list of your actions. The actions are returned sorted by creation date by default, with the most recent actions appearing first.

- object
  - `data` object, required
    - `has_more` boolean
    - `items` object[]
      - `created_at` integer — Immutable Unix timestamp in milliseconds taken at time of creation
      - `key` string — A unique identifier used to reference the object
      - `updated_at` integer — Unix timestamp in milliseconds taken at time of last update
      - `archived` boolean — The boolean flag which determines if the action is archived or not.
      - `company` object — Base schema representation of a company
        - `key` string — Unique key of this company
        - `name` string — The name of this company
      - `customer` object, nullable
        - `key` string, nullable — Unique key of this customer.
        - `sub_ids` string[], nullable
      - `partnership_key` string — Unique key of this partnership.
      - `type` string — The type of action the partner or customer performed
      - `value` integer — The number of times the action was performed
    - `total` integer, nullable
  - `message` string, required
  - `status` integer, required

## Other responses

- `400` — Bad Request Error
- `401` — Unauthorized Error
- `403` — Forbidden Error
- `404` — Not Found Error
- `500` — Internal Server Error

---

[API](https://skmtc.dev/partnerstack/apis/partnerstack-api.md) · [All operations](https://skmtc.dev/partnerstack/apis/partnerstack-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/partnerstack/partnerstack-api/revisions/0f35aebe53a9/schema)
