๐Shared KYC
{
"type": "FIXED_PRICE", // Type of checkout
"fixedAmount": {
"amount": 100, // User pay amount
"currency": "USD" // User pay currency
},
"clientOrderId": "unique-merchant-id", // If provided, can be used to identify checkout
"expiresAt": "2026-01-31T00:00:00Z", // Checkout expiration date
"merchantShareUserData": {
"email": "[email protected]", // User email in merchant system
"shareToken": "share_token_abc123" // Sumsub-generated share token
},
"name": "100 USD Top Up", // Will be displayed on checkout page
"returnUrl": "https://merchant-site.com/success?id=unique-merchant-id" // If provided, user will be redirected on payment complete
}Last updated