curl -X POST https://api-eu.sulpayments.ch/v1/3ds/order \
-H "Authorization: Bearer {token}" \
-H "Content-Type: application/json" \
-d '{
"order": {
"partner_code": "3DS-001",
"value": 500.00,
"description": "High value purchase",
"notification_url": "https://yourapp.com/webhooks/order",
"payment_method": "credit_card"
},
"customer": {
"name": "Jane Doe",
"document": "12345678909",
"email": "jane@example.com",
"phone": "+5511999999999"
}
}'