POST /payment/resend
Resends the webhook callback for a given payment. Requires authentication.
Request
Section titled “Request”POST /payment/resendRequest Body
Section titled “Request Body”| Field | Type | Required | Description |
|---|---|---|---|
uuid | string | Yes | The payment UUID |
order_id | string | Yes | Your internal order identifier |
Example
Section titled “Example”# Compute sign: MD5(base64(JSON.stringify(body)) + API_KEY)curl -X POST https://api.nearpayments.io/cryptomus/v1/payment/resend \ -H "Content-Type: application/json" \ -H "merchant: YOUR_MERCHANT_UUID" \ -H "sign: COMPUTED_SIGN" \ -d '{ "uuid": "a1b2c3d4-...", "order_id": "order-42" }'Response
Section titled “Response”{ "state": 0, "result": []}