为其生成订单和支付令牌。订单根据请求正文中传递的商品生成。
要在新窗口中打开支付UI,请使用以下链接:https://secure.xsolla.com/paystation4/?token={token}
,其中{token}
是收到的令牌。
如仅进行测试,请使用此URL:https://sandbox-secure.xsolla.com/paystation4/?token={token}
。
user.country.value
参数用于选择订单的货币。如果用户的国家/地区未知,
请在X-User-Ip
头中提供用户的IP作为替代方案。required | object | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
required | object | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object or null [ 1 .. 200 ] properties 自定义参数的形式是一组有效的JSON键值对。 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sandbox | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object 为用户配置支付流程和支付UI的设置。 | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
成功创建支付令牌和订单。
基本认证未通过或错误。确保您使用了基本认证或正确的凭据。
请求正文和创建购物车验证错误。
{- "purchase": {
- "items": [
- {
- "quantity": 2,
- "sku": "cup01"
}, - {
- "quantity": 1,
- "sku": "t-shirt01"
}, - {
- "quantity": 1,
- "sku": "cup01"
}, - {
- "quantity": 1,
- "sku": "hat01"
}
]
}, - "settings": {
- "currency": "USD",
- "external_id": "AABBCCDD01",
- "language": "de",
- "payment_method": 1,
- "ui": {
- "theme": "63295aab2e47fab76f7708e3"
}
}, - "user": {
- "country": {
- "allow_modify": false,
- "value": "US"
}, - "email": {
- "value": "user@xsolla.com"
}, - "id": {
- "value": "user-id"
}, - "name": {
- "value": "user-name"
}
}
}
{- "order_id": 12345,
- "token": "huooAqbXBSJxB8Q4dYBqJp4ybiInqsPb"
}