curl --location 'https://auth.zamupay.com/apps/graph/api/v1/cybersource/fraud/screen' \
--header 'Authorization: Bearer {{access_token}}' \
--header 'Content-Type: application/json' \
--data-raw '{
"OrderId": "ORD-20250424-00123",
"Amount": "1000",
"Currency": "KES",
"TransientToken": "transientToken_ZpKnXq...",
"Customer": {
"Email": "jane.doe@example.com",
"IpAddress": "41.90.64.1",
"FirstName": "Jane",
"LastName": "Doe",
"PhoneNumber": "+254712345678"
},
"ShippingAddress": {
"Line1": "123 Ngong Road",
"City": "Nairobi",
"Country": "KE"
},
"Items": [
{
"ProductCode": "ELECTRONICS",
"ProductName": "Wireless Headphones",
"Quantity": 1,
"UnitPrice": "1000"
}
]
}'