Skip to main content
POST
/
b2b
/
iframeOrder
/
getDetails
Get iframe order details
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"
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json
jwt
string
required

Signed JWT token issued by WizzGift.

Response

Iframe order details returned successfully.

Generic container for iframe order details.

success
boolean
required
data
object
required

Order details required for iframe flow.