Skip to main content
WEBHOOK
order.report.issued
{
  "event": "order.report.issued",
  "payload": {
    "id": 123,
    "buyer": {
      "id": 123,
      "username": "<string>"
    },
    "order_type": "account_order",
    "order_id": 123,
    "content": "<string>",
    "created_at": 123,
    "updated_at": 123
  }
}
{
  "status": "success"
}
Learn more about how GameBoost handles webhooks.

Headers

Signature
string
required

HMAC-SHA256 signature of the request body using your webhook secret. Verify this to ensure the webhook is from GameBoost.

Example:

"417142a6b1c6e..."

User-Agent
string
required

The user agent of the request. Must be "GameBoost Server".

Example:

"GameBoost Server"

Body

application/json

Webhook payload for order report issued event

event
enum<string>
required

Event type identifier

Available options:
order.report.issued
payload
object
required

Report details

Response

Webhook received successfully. Return 200 to acknowledge receipt.

status
string
Example:

"success"

I