1. Transactions
Payswix | Agents API
  • Finance account
    • Getting started
    • Validation rules
    • Virtual IBANs
      • NACE codes
      • Create vIBAN for person or company
      • Get a list of vIBANs
    • Transactions
      • Create a SEPA transfer
        POST
      • Get transfer fee
        POST
      • Get all existing recipients
        GET
      • Get transaction information
        GET
      • Get a filtered list of transactions
        POST
    • Companies
      • Get specific company details
    • Accounts
      • Create a new account
      • Get all user accounts
      • Get user account information by account number
    • Other
      • Check if the server is alive
    • Webhooks
      • Transaction webhook
    • Schemas
      • Company vIBAN
      • Person vIBAN
      • Transaction
  • Standard account
    • Transactions
      • Create a SEPA transfer
      • Create a SWIFT transfer
    • Schemas
      • Transaction
  1. Transactions

Get all existing recipients

GET
/agents/v1/transactions/{clientId}/recipients/historic

Request

Authorization
API Key
Add parameter in header
X-API-KEY
Example:
X-API-KEY: ********************
or
Path Params

Responses

🟢200OK
application/json
OK
Bodyapplication/json

🟠401Unauthorized
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://demo-api.payswix.com/agents/v1/transactions//recipients/historic' \
--header 'X-API-KEY: <api-key>'
Response Response Example
200 - Success
{
    "is_success": true,
    "data": [
        {
            "recipientAccount": "LT601015012346678905",
            "toAccount": null,
            "beneficiaryType": 2,
            "recipientName": "'Tomas'",
            "recipientIban": "LT601012012445679902",
            "bankName": "LLOYDS",
            "bankCountryCode": "LT",
            "bankAddress": null,
            "recipientSwift": "GLUALT22",
            "recipientBankCode": "GLUALT22",
            "recipientSortCode": null,
            "correspondentName": null,
            "correspondentAccount": null,
            "correspondentSwift": null,
            "beneficiaryAddress": "27 Colmore Row",
            "beneficiaryCity": "Birmingham",
            "beneficiaryPostalCode": "B3 2EW",
            "beneficiaryCountryCode": "GB",
            "beneficiaryState": "test test"
        },
        {
            "recipientAccount": "60018425987",
            "toAccount": "60018425987",
            "beneficiaryType": 2,
            "recipientName": "Connecting people MB",
            "recipientIban": "LT183880700017425989",
            "bankName": "PAYSWIX, UAB",
            "bankCountryCode": "LT",
            "bankAddress": "LVIVO G. 25-104",
            "recipientSwift": "GLUALT22XXX",
            "recipientBankCode": "GLUALT22XXX",
            "recipientSortCode": null,
            "correspondentName": "PAYSWIX, UAB",
            "correspondentAccount": "LT18388050601+425989",
            "correspondentSwift": null,
            "beneficiaryAddress": "Baarerstrasse 12",
            "beneficiaryCity": "Zug",
            "beneficiaryPostalCode": "6300",
            "beneficiaryCountryCode": "CH",
            "beneficiaryState": null
        },
        {
            "recipientAccount": "75615847021",
            "toAccount": "75615886021",
            "beneficiaryType": 2,
            "recipientName": "Finance UAB",
            "recipientIban": "LT353890022378899488",
            "bankName": "PAYSWIX, UAB",
            "bankCountryCode": "LT",
            "bankAddress": "LVIVO G. 25-104",
            "recipientSwift": "GLUALT22XXX",
            "recipientBankCode": "GLUALT22XXX",
            "recipientSortCode": null,
            "correspondentName": "PAYSWIX, UAB",
            "correspondentAccount": "LT353780801188798588",
            "correspondentSwift": null,
            "beneficiaryAddress": "Yrjonkatu 11 D 20",
            "beneficiaryCity": "Helsinki",
            "beneficiaryPostalCode": "00120",
            "beneficiaryCountryCode": "FI",
            "beneficiaryState": null
        }
    ],
    "message": null
}
Previous
Get transfer fee
Next
Get transaction information
Built with