curl --location 'https://partner-api-stage.p100.io/v1/hosted-checkout' \
--header 'x-api-key: <api-key>' \
--header 'Content-Type: application/json' \
--data-raw '{
"amount": "250.00",
"expiresAt": "2026-07-15T10:00:00Z",
"reference": "example_ref",
"redirectUrl": "https://your-store.com/checkout/success",
"payerDetails": {
"email": "jane.smith@example.com",
"firstName": "Jane",
"lastName": "Smith",
"birthDate": "1988-11-12T00:00:00Z",
"residenceCountry": "CA",
"birthPlace": "FR",
"phoneNumber": "+1987654321"
}
}'