Fetch merchant webhook data
Fetch the webhook status for a specific deposit using ONE OF deposit_id OR transaction_id.
Parameters
| Name | Location | Type | Description |
|---|---|---|---|
apirequired | query | string | Your WAXPEER API |
merchantrequired | query | string | Your merchant name |
deposit_idoptional | query | string | Your unique custom deposit ID (string, max 50 characters) |
transaction_idoptional | query | integer | Transaction ID |
Responses
200 **Please open the schema to see the response structure, fields, and their descriptions**
{
"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"
}
]
}
}