cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/payments/challenge-deposit \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "amount": "0.10", "currency": "EUR", "referenceId": "unique-ref-id-123", "firstName": "John", "lastName": "Doe", "piiToggle": 1, "nameMatchLogic": "fuzzy" }'
{ "transactionId": "e5c81c78-272b-4307-9197-3ace19109fd3", "referenceId": "unique-ref-id-123", "status": "OK", "globalResult": { "overall": "review", "totalScore": 85 }, "nameMatchScore": 85, "iban": "DE44500105175407324931", "returnedFirstName": "John", "returnedLastName": "Doe" }
Payment Service API Documentation
/payments/challenge-deposit
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Successfully initiated challenge deposit.
The response is of type object.
object