---
title: "Resend payout callback"
method: POST
path: "/v2/payouts/resend-callback/{payoutId}"
tags: ["payouts"]
---

# Resend payout callback

`POST /v2/payouts/resend-callback/{payoutId}`

Resends the callback for a payout to your configured callback URL. The payout must have reached a final state.

Please ensure your implementation of callback handling follows the guidelines in [Handling callbacks](#section/Implementation/Handling-callbacks).

## Path parameters

- `payoutId` string, uuid, required

## Response `200`

Request has been processed by PawaPay

- PayoutResendCallbackResponse
  - `payoutId` string, uuid, required — The unique ID for this payment in PawaPay as specified by you during initiation.
  - `status` 'ACCEPTED' | 'REJECTED', required — Possible initiation statuses: * `ACCEPTED` - The action request has been accepted by PawaPay for processing. * `REJECTED` - The action request has been rejected by PawaPay. See `failureReason` for details.
  - `failureReason` ManualActionFailureReason — The reason for the failure for this action
    - `failureCode` string — Possbile failures: * `NOT_FOUND` - The payment to perform the operation on was not found in PawaPay. * `INVALID_STATE` - The payment to perform the operation on was not in the correct status. For example, payment was not `COMPLETED`.
    - `failureMessage` string — Description of the reason for this failure

## Other responses

- `401` — Authentication failed. Make sure you have added the API token into the header. If using signatures, make sure they are valid.
- `403` — Authorization failure. Please check your authentication token.
- `500` — An unknown failure has occurred.

---

[API](https://skmtc.net/pawapay/apis/pawapay-merchant-api-v2.md) · [All operations](https://skmtc.net/pawapay/apis/pawapay-merchant-api-v2/llms.txt) · [OpenAPI document](https://skmtc-service-staging.skmtc.workers.dev/v1/apis/pawapay/pawapay-merchant-api-v2/versions/ce13c31e9746/schema)
