cURL
curl --request POST \ --url https://sandbox-umbrella-api.azurewebsites.net/api/services/payments/initiate \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "referenceId": "unique-ref-id-123", "transactionDescription": "Payment for Order #12345", "returnUrl": "https://example.com/callback", "IBAN": "DE89370400440532013000", "storedBIC": "BOFIIE2D", "language": "DE", "currency": "EUR", "amount": "100.50", "country": "DE" }'
{ "requestId": "req_123456789", "redirectUrl": "https://example.com/app/req_123456789" }
Payment Service API Documentation
/payments/initiate
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
Payment successfully initiated.
The response is of type object.
object