- Simulate an incoming wire transfer using IBAN
This tool is used to simulate incoming wire transfers (IWT) into managed accounts. IWTs are processed in line with the configuration of your application. For EUR and USD IWTs provide the destinationIbanDetails of your Managed Account, for GBP IWTs provide destinationFasterPaymentDetails or destinationIbanDetails of your Managed Account. Sender Details can also be added that is used to identify whether the IWT originated from a Linked Account (if configured) or a third party.
The payment reference is needed to identify which account, in cases where the same iban is used
A message representing a monetary amount in a particular currency.
Optional field which indicates the payment network to use. If not provided, a default payment network will be chosen based on the currency.
- https://sandbox.weavr.io/simulate/apihttps://sandbox.weavr.io/simulate/api/accounts/deposit
- Mock serverhttps://api.weavr.io/_mock/products/simulator/openapi/accounts/deposit
curl -i -X POST \
https://sandbox.weavr.io/simulate/api/accounts/deposit \
-H 'Content-Type: application/json' \
-H 'call-ref: string' \
-H 'programme-key: YOUR_API_KEY_HERE' \
-d '{
"iban": "string",
"paymentReference": "string",
"depositAmount": {
"currency": "str",
"amount": 0
},
"senderName": "string",
"reference": "string",
"receiverName": "string",
"txId": 0,
"senderIbanDetails": {
"iban": "string",
"bankIdentifierCode": "string"
},
"senderFasterPaymentsDetails": {
"sortCode": "string",
"accountNumber": "string",
"secondaryReference": "string"
},
"senderAccountDescriptorDetails": {
"accountDescriptor": "string"
},
"destinationIbanDetails": {
"iban": "string",
"bankIdentifierCode": "string"
},
"destinationFasterPaymentsDetails": {
"sortCode": "string",
"accountNumber": "string",
"secondaryReference": "string"
},
"paymentNetwork": "SEPA"
}'{ "code": "COMPLETED" }