curl --location 'https://auth.zamupay.com/apps/graph/api/v1/cybersource/payment/authorise' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"Transaction": {
"Amount": "1000",
"Currency": "KES",
"TransientToken": "transientToken_ZpKnXq...",
"RequestId": "ORD-20250424-00123",
"PayerAuthenticationId": "AUTH-3DS-00456"
},
"BillingAddress": {
"FirstName": "Jane",
"LastName": "Doe",
"Email": "jane.doe@example.com",
"PhoneNumber": "+254712345678",
"Country": "KE"
}
}'