Skip to content

Callback Notification Overview

The iGV platform proactively pushes notifications to the seller's configured callback URL when an order status changes.

How It Works

Order status changes → iGV platform constructs request → Signs → POSTs to seller callback URL → Seller verifies and processes

Prerequisites

ItemDescription
Callback URLThe seller must provide a callback URL to the iGV platform in advance
Secret KeyA key assigned by the iGV platform for signature verification

Seller Implementation Requirements

  • Accept POST requests with a JSON body
  • Verify the request signature (Signature Verification)
  • Implement idempotency based on X-Request-Id
  • Return HTTP 200 on success

Currently Supported Callback Events

EventTrigger ConditionDescription
Order Status CallbacksellerOrderStatus = 1Order has been paid and passed risk review; awaiting seller delivery

Future Extensions

Currently only sellerOrderStatus = 1 triggers a callback notification. Callbacks for other status changes will be supported in future versions.

Callback Request Format

http
POST {seller_callback_url}
Content-Type: application/json
X-Request-Id: <unique request ID>
X-Timestamp: <millisecond timestamp>
X-Signature: <HMAC-SHA256 signature>

All game copyrights, trademarks, and service marks belong to their respective owners.