Sync with Waxpeer session to auto-fill API key

Fetch a list of merchant webhooks

GET/v2/merchant/webhooks

Fetch a list of merchant webhooks filtered by optional status and paginated using start_from.

Limit 200 records per response.

Parameters

NameLocationTypeDescription
api
required
querystring
merchant
required
querystring

Your merchant name

status
optional
queryenum

Filter webhooks by status. If not provided, all statuses will be returned

enum: pending, waiting_next_attempt, failed, completed

start_from
optional
queryinteger

Start from webhook ID (Optional for pagination)

Responses

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

Response
{
  "status": "success",
  "data": [
    {
      "transaction_id": 123456,
      "deposit_id": "123456asd",
      "steam_trade": 789012,
      "status": "completed",
      "status_code": 200,
      "created_at": "2023-10-05T12:34:56Z",
      "updated_at": "2023-10-05T12:40:00Z",
      "attempts": [
        {
          "attempt": 1,
          "status_code": 200,
          "created_at": "2023-10-05T12:34:56Z"
        }
      ]
    }
  ],
  "start_from": 123456
}