Sync with Waxpeer session to auto-fill API key

Resend merchant webhook

POST/v2/merchant/webhook/resend

Resend a previously completed OR failed webhook for a deposit using ONE OF deposit_id OR transaction_id.

Will trigger a new webhook attempt without retries.

Parameters

NameLocationTypeDescription
api
required
querystring

Request body

NameLocationTypeDescription
merchant
required
bodystring

Your merchant name

deposit_id
optional
bodystring

Your unique custom deposit ID (string, max 50 characters)

transaction_id
optional
bodyinteger

Transaction ID

Example
{
  "merchant": "mymerchant",
  "deposit_id": "123456asd",
  "transaction_id": 123456
}

Responses

200 **Please open the schema to see the response structure, fields, and their descriptions**

Response
{
  "status": "success"
}