1. ClientIntegrationTransfers
Framnex for Developers
  • Introduction
    • Overview
    • Quick Start
  • ClientIntegrationAccounts
    • Returns an account by its identifier
      GET
    • Returns the paged list of accounts
      GET
  • ClientIntegrationAuth
    • Obtain an access token using client credentials.
      POST
  • ClientIntegrationExchangeRates
    • Returns the exchange rate between the sell and buy accounts
      GET
  • ClientIntegrationTransfers
    • Creates a new outgoing transfer
      POST
    • Returns the paged list of transfers, filtered by the provided filter
      GET
    • Returns a transfer by its identifier
      GET
  • ClientIntegrationWebhooks
    • Registers (or replaces) the URL webhooks are delivered to for the integrator
      POST
    • Returns the currently registered webhook URL for the integrator
      GET
    • Returns the paged list of webhook deliveries, filtered by the provided filter
      GET
    • Returns a webhook delivery by its identifier
      GET
    • Re-queues a failed webhook delivery for another attempt
      POST
  • ClientIntegrationTransferDocuments
    • Downloads a document by its file name.
      GET
    • Gets all documents
      GET
    • Uploads multiple documents.
      POST
  • Schemas
    • BankClientAPI
      • Account
      • AccountCredentials
      • AccountState
      • AccountType
      • AchCredentials
      • Address
      • BankDetails
      • BusinessEntity
      • ClientIntegrationAuthRequest
      • ClientIntegrationAuthResponse
      • ClientIntegrationErrorResponse
      • CreateExchangeTransferRequest
      • CreateOutgoingTransferRequest
      • CreateTransferRequest
      • CreateTransferType
      • CreatedResponse
      • Credentials
      • CredentialsState
      • CryptoCredentials
      • CustomerTransferStateDto
      • CryptoTransferDetails
      • ExchangeRate
      • DocumentDto
      • FasterUkCredentials
      • ExchangeTransferCancelledWebhookPayload
      • ExchangeTransfer
      • FedWireCredentials
      • IndividualEntity
      • ExchangeTransferExecutedWebhookPayload
      • InternalCredentials
      • InternalServerError
      • IError
      • LegalEntity
      • GasPaymentWebhookPayload
      • IReason
      • LegalEntityType
      • ISuccess
      • LocalAEDCredentials
      • LocalXafCredentials
      • IncomingTransferReceivedWebhookPayload
      • IncomingTransfer
      • NeftCredentials
      • OperationTypeDto
      • PageInfoDto
      • Participant
      • PixCredentials
      • SepaCredentials
      • SortOrderDto
      • SwiftCredentials
      • OutgoingTransferCancelledWebhookPayload
      • OutgoingTransfer
      • TedPayCredentials
      • OutgoingTransferExecutedWebhookPayload
      • PagedFilterDto
      • TransferGas
      • TransferPagedDataDto
      • TransferState
      • TransferType
      • PaymentMethod
      • TransferTypeDto
      • PaymentSystem
      • UaeFtsCredentials
      • RegisterWebhookRequest
      • UaeIppCredentials
      • Result
      • ValidationProblemDetails
      • ProblemDetails
      • YeePayNgnLocalCredentials
      • Transfer
      • TransferDetails
      • TransferDetailsType
      • WebhookDelivery
      • WebhookDeliveryPagedDataDto
      • WebhookPayload
      • WebhookState
      • WebhookSubscription
      • WebhookType
      • YeePayKesLocalCredentials
      • YeePayMxnLocalCredentials
GuidesBaaS API ReferenceBank Client API Reference
GuidesBaaS API ReferenceBank Client API Reference
  1. ClientIntegrationTransfers

Returns the paged list of transfers, filtered by the provided filter

GET
/integration/transfers

Request

Authorization
JWT Bearer
Add the parameter
Authorization
to Headers
Example:
Authorization: ********************
or
Query Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location 'https://my.test-1.account.finlego.com/api/merchant/integration/transfers?States=undefined&OperationType=undefined&AccountId=undefined&CreatedFrom=undefined&CreatedTo=undefined&Currency=undefined&AmountFrom=undefined&AmountTo=undefined&System=undefined&Type=undefined&IsFiat=undefined&SortBy=undefined&SortOrder=undefined&PageNumber=undefined&PageSize=undefined' \
--header 'Authorization: Bearer <token>'

Responses

🟢200
application/json
OK
Bodyapplication/json

Example
{
    "data": [
        {
            "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
            "details": [
                {
                    "type": "crypto",
                    "txHash": "string",
                    "gas": {
                        "gasPaymentId": "2276332b-f8b0-4d66-92d8-55d8621398f1",
                        "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
                        "amount": 0,
                        "currency": "string"
                    }
                }
            ],
            "system": "sepa",
            "currency": "string",
            "amount": 0,
            "feeAmount": 0,
            "reference": "string",
            "type": "outgoing",
            "state": "processing",
            "reason": "string",
            "senderAccountId": "4e468f86-26dc-4a94-b56b-b06297a94aed",
            "recipient": {
                "credentials": {
                    "bankDetails": {
                        "bankName": "string",
                        "bankCountry": "string",
                        "bankRegion": "string",
                        "bankAddress": "string",
                        "bic": "string",
                        "intermediaryBic": "string",
                        "bankCode": "string",
                        "routingNumber": "string",
                        "sortCode": "string",
                        "branchCode": "string"
                    },
                    "type": "sepa",
                    "iban": "string",
                    "reference": "string"
                },
                "legalEntity": {
                    "address": {
                        "streetLine1": "string",
                        "streetLine2": "string",
                        "city": "string",
                        "state": "string",
                        "zip": "string",
                        "country": "string"
                    },
                    "type": "business",
                    "legalName": "string"
                }
            },
            "gas": {
                "gasPaymentId": "2276332b-f8b0-4d66-92d8-55d8621398f1",
                "accountId": "3d07c219-0a88-45be-9cfc-91e9d095a1e9",
                "amount": 0,
                "currency": "string"
            },
            "documents": [
                {
                    "fileName": "string"
                }
            ]
        }
    ],
    "page": {
        "pageNumber": 0,
        "pageSize": 0,
        "totalRecords": 0,
        "totalPages": 0
    }
}
🟠400
🟠401
🟠403
🔴500
Modified at 2026-09-09 15:51:24
Previous
Creates a new outgoing transfer
Next
Returns a transfer by its identifier
Built with