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

# List bulk actions

`GET /bulk_actions`

List and filter bulk actions.

## Query parameters

- `limit` integer
- `starting_after` string, uuid
- `sort_order` 'asc' | 'desc'
- `start_date` string, date
- `end_date` string, date
- `target_object` 'payment_order' | 'internal_account'
- `action` 'create' | 'approve' | 'cancel'
- `status` 'created' | 'processing' | 'executed'

## Response `200`

200

- BulkActionSearchResult
  - `records` BulkActionDetails[]
    - `id` string, required — The bulk action ID.
    - `object` string, required — Type of the object, `bulk_action`.
    - `target_object` 'payment_order' | 'internal_account', required — The object related to the bulk action.
    - `action` 'create' | 'approve' | 'cancel', required — The action to execute on the items included in the bulk action. If `target_action` is `payment_order`, can be `create`, `approve` or `cancel`. If `target_action` is `internal_account`, can be `create`.
    - `status` 'created' | 'processing' | 'executed', required — The status of the bulk action. Either created, processing, or executed.
    - `total_items` integer, required — The number of items included in the bulk action.
    - `total_successful` integer, required — The number of items successfully processed.
    - `total_failed` integer, required — The number of items that failed to be processed.
    - `processed_at` string, date-time, nullable, required — The UTC timestamp when the bulk action was processed.
    - `created_at` string, date-time, required — The UTC timestamp of the creation of the bulk action.

## Other responses

- `400` — Bad request. Validation error or missing required fields.
- `401` — Unauthorized. API key is missing or invalid.
- `500` — Internal server error.

---

[API](https://skmtc.net/numeral/apis/payments.md) · [All operations](https://skmtc.net/numeral/apis/payments/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/numeral/payments/revisions/220f101cc2ef/schema)
