This tool is a quick and easy way to put funds on a Managed Account (previously called ‘deposit’), that you may need for testing elsewhere. Provide account id and transaction amount and the transaction will be processed through the system. This method skips some of the steps when processing IWTs. To test this fully, please use the accounts_deposit endpoint.
Security
API_Secret_Key
A message representing a monetary amount in a particular currency.
- https://sandbox.weavr.io/simulate/apihttps://sandbox.weavr.io/simulate/api/accounts/{account_id}/deposit
- Mock serverhttps://api.weavr.io/_mock/products/simulator/openapi/accounts/{account_id}/deposit
curl -i -X POST \
'https://sandbox.weavr.io/simulate/api/accounts/{account_id}/deposit' \
-H 'Content-Type: application/json' \
-H 'call-ref: string' \
-H 'programme-key: YOUR_API_KEY_HERE' \
-d '{
"depositAmount": {
"currency": "str",
"amount": 0
},
"senderName": "string",
"reference": "string",
"receiverName": "string",
"txId": 0,
"senderIban": "string",
"sepa": {
"iban": "stringstringstr",
"bankIdentifierCode": "stringst"
},
"fasterPayments": {
"accountNumber": "stringst",
"sortCode": "string"
},
"accountDescriptor": {
"accountDescriptor": "string"
},
"paymentNetwork": "SEPA"
}'Response
{ "code": "COMPLETED" }