Skip to main content
Weavr API
Correspondent bank transfers

List correspondent bank transfers

GET/correspondent_bank_transfers

Returns a paginated list of correspondent bank transfers for the logged-in identity. Filter results by profile, source instrument, creation date, execution date, state, tag, or originator details.

Read the transaction activity overview for how correspondent bank transfers appear in the common transaction model.

Request

Available on
SandboxProduction

Query parameters

Responses

200OK

Success

Headers
Body
application/json
{}
objectobject · 3 fields
Response example
{  "transfer": [    {      "id": "123456789",      "profileId": "10001",      "tag": "customer-123",      "sourceInstrument": {        "type": "managed_accounts",        "id": "123456789"      },      "amount": {        "currency": "GBP",        "amount": 1250      },      "originator": {        "tag": "customer-123",        "name": "Alex Smith",        "address": "1 High Street, London W1A 1AA",        "country": "GB",        "bankAccountDetails": {          "account": "GB29NWBK60161331926819",          "financialInstitution": "NWBKGB2L"        },        "supplementaryInformation": {          "documentType": "NATIONAL_ID",          "documentNumber": "123456789"        }      },      "beneficiary": {        "name": "Alex Smith",        "iban": "GB29NWBK60161331926819",        "bankIdentifierCode": "NWBKGB2L",        "address": "1 High Street, London W1A 1AA",        "bankName": "National Westminster Bank PLC",        "bankAddress": "250 Bishopsgate, London EC2M 4AA",        "bankCountry": "GB",        "nationality": "GB",        "dateOfBirth": "1990-01-01"      },      "purpose": "Invoice payment",      "description": "Invoice 1042",      "externalData": [        {          "name": "invoiceNumber",          "value": "INV-1042"        }      ],      "state": "INVALID",      "creationTimestamp": 1786118400000,      "scheduledTimestamp": "1786118400000",      "cancellationReason": "Payment no longer required",      "validationOutcomes": [        {          "category": "SEPA_VERIFICATION_OF_PAYEE",          "categoryResult": {            "match": "MATCH",            "accountName": "Alex Smith"          }        }      ]    }  ],  "count": 0,  "responseCount": 0}