---
title: "Retrieve bulk action items"
method: GET
path: "/bulk_actions/payee_verification_requests/{id}/items"
tags: ["payee-verification-requests"]
---

# Retrieve bulk action items

`GET /bulk_actions/payee_verification_requests/{id}/items`

Retrieve the detailed results of all items in a bulk action, including which items succeeded and which failed with error details.

## Path parameters

- `id` string, uuid, required

## Response `200`

Successfully retrieved bulk action items

- BulkActionItemsResponse — Response containing the items of a bulk action.
  - `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.
  - `succeeded` BulkActionItemResult[] — Array of items that succeeded.
    - `id` string, uuid, nullable — The ID of the payee verification request. Null if the item failed.
    - `idempotency_key` string, nullable — The idempotency key of the item.
    - `error` string, nullable — Error code if the item failed. Null if successful.
    - `message` string, nullable — Error message if the item failed. Null if successful.
    - `details` object, nullable — Detailed error information if the item failed.
    - `correlation_id` string, uuid, nullable — Correlation ID for tracing the error.
  - `failed` BulkActionItemResult[] — Array of items that failed.
    - `id` string, uuid, nullable — The ID of the payee verification request. Null if the item failed.
    - `idempotency_key` string, nullable — The idempotency key of the item.
    - `error` string, nullable — Error code if the item failed. Null if successful.
    - `message` string, nullable — Error message if the item failed. Null if successful.
    - `details` object, nullable — Detailed error information if the item failed.
    - `correlation_id` string, uuid, nullable — Correlation ID for tracing the error.

## Other responses

- `400` — Validation error.
- `404` — The specified resource was not found.
- `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/versions/220f101cc2ef/schema)
