Class TransactionsApi


  • public class TransactionsApi
    extends Service
    • Constructor Detail

      • TransactionsApi

        public TransactionsApi​(Client client)
    • Method Detail

      • getAllTransactions

        public TransactionSearchResponse getAllTransactions​(String balancePlatform,
                                                            String paymentInstrumentId,
                                                            String accountHolderId,
                                                            String balanceAccountId,
                                                            String cursor,
                                                            OffsetDateTime createdSince,
                                                            OffsetDateTime createdUntil,
                                                            Integer limit,
                                                            RequestOptions requestOptions)
                                                     throws ApiException,
                                                            IOException
        Get all transactions
        Parameters:
        balancePlatform - String Query: Unique identifier of the [balance platform](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/balancePlatforms/{id}__queryParam_id). (optional)
        paymentInstrumentId - String Query: Unique identifier of the [payment instrument](https://docs.adyen.com/api-explorer/balanceplatform/latest/get/paymentInstruments/_id_). (optional)
        accountHolderId - String Query: Unique identifier of the [account holder](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/accountHolders/{id}__queryParam_id). (optional)
        balanceAccountId - String Query: Unique identifier of the [balance account](https://docs.adyen.com/api-explorer/#/balanceplatform/latest/get/balanceAccounts/{id}__queryParam_id). (optional)
        cursor - String Query: The `cursor` returned in the links of the previous response. (optional)
        createdSince - OffsetDateTime Query: Only include transactions that have been created on or after this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
        createdUntil - OffsetDateTime Query: Only include transactions that have been created on or before this point in time. The value must be in ISO 8601 format. For example, **2021-05-30T15:07:40Z**. (required)
        limit - Integer Query: The number of items returned per page, maximum of 100 items. By default, the response returns 10 items per page. (optional)
        requestOptions - RequestOptions Object to store additional data such as idempotency-keys (optional)
        Returns:
        TransactionSearchResponse
        Throws:
        ApiException - if fails to make API call
        IOException