POST
/
payments
/
challenge-deposit
curl --request POST \
  --url https://api-umbrella.io/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"
}

For a usage description of the Payment Initiation Service, please refer to the Payment Services page.

Endpoint

POST /payments/challenge-deposit

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

200
application/json
Successfully initiated challenge deposit.

The response is of type object.