Sync with Waxpeer session to auto-fill API key

Fetch merchant webhook data

GET/v2/merchant/webhook

Fetch the webhook status for a specific deposit using ONE OF deposit_id OR transaction_id.

Parameters

NameLocationTypeDescription
api
required
querystring
merchant
required
querystring

Your merchant name

deposit_id
optional
querystring

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

transaction_id
optional
queryinteger

Transaction ID

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"
      }
    ]
  }
}