curl -X POST https://api-eu.sulpayments.ch/v1/checkout \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"order": {
"partner_code": "ORDER-002",
"value": 250.00,
"description": "Hosted checkout",
"notification_url": "https://yourapp.com/webhooks/order",
"redirect_url": "https://yourapp.com/thank-you",
"payment_method": "credit_card"
},
"customer": {
"name": "Jane Doe",
"email": "jane@example.com",
"phone": "+5511999999999",
"document": "12345678909"
}
}'