cURL
curl --request POST \ --url https://api2.wizzgift.com/b2b/iframeOrder/getDetails \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data ' { "jwt": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9..." } '
{ "success": true, "data": { "order_id": "IFR-123456", "product_slug": "paypal-gift-worldwide", "amount": 50, "currency": "USD", "expires_at": "2025-01-01T12:00:00Z" } }
Returns order details for iframe-based integration.
The request body must contain a signed JWT issued by WizzGift.
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Signed JWT token issued by WizzGift.
Iframe order details returned successfully.
Generic container for iframe order details.
Order details required for iframe flow.
Was this page helpful?