Download OpenAPI specification:Download
This is a Simulator API which is only available on the Weavr Sandbox Environment
Simulating an Incoming Wire Transfer (deposit) using Account ID is a quick and easy way to put funds on a Managed Account, that you may need for testing elsewhere. This method skips some of the steps when processing IWTs (if you want to do this, use the POST /accounts/deposit endpoint).
Success
Invalid Request
Error
{- "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"
}
{- "code": "COMPLETED"
}
Simulate an Incoming Wire Transfer (deposit) arriving into a Managed Account. IWTs are processed in line with the configuration of your application. Use the sender details and destination details to replicate the external payment details.
Success
Invalid Request
Error
{- "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"
}