POST
/
api
/
service
/
transaction
/
list
List transactions
curl --request POST \
  --url https://api.sand.getivy.de/api/service/transaction/list \
  --header 'Content-Type: application/json' \
  --header 'X-Ivy-Api-Key: <api-key>' \
  --data '{
  "from": 123,
  "to": 123,
  "afterCursor": "<string>"
}'
{
  "data": [
    {
      "id": "<string>",
      "amount": "<string>",
      "currency": "<string>",
      "side": "credit",
      "creditor": {
        "type": "iban",
        "iban": {
          "iban": "<string>",
          "bic": "<string>",
          "accountHolderName": "<string>"
        },
        "sortCode": {
          "sortCode": "<string>",
          "accountNumber": "<string>",
          "accountHolderName": "<string>"
        },
        "bankCode": {
          "accountNumber": "<string>",
          "code": "<string>",
          "accountHolderName": "<string>"
        },
        "bban": {
          "bban": "<string>",
          "accountHolderName": "<string>",
          "bic": "<string>"
        }
      },
      "debtor": {
        "type": "iban",
        "iban": {
          "iban": "<string>",
          "bic": "<string>",
          "accountHolderName": "<string>"
        },
        "sortCode": {
          "sortCode": "<string>",
          "accountNumber": "<string>",
          "accountHolderName": "<string>"
        },
        "bankCode": {
          "accountNumber": "<string>",
          "code": "<string>",
          "accountHolderName": "<string>"
        },
        "bban": {
          "bban": "<string>",
          "accountHolderName": "<string>",
          "bic": "<string>"
        }
      },
      "balance": {
        "before": "<string>",
        "after": "<string>"
      },
      "bankStatementReference": "<string>",
      "transactionDate": 123
    }
  ],
  "paging": {
    "hasNext": true,
    "nextCursor": "<string>"
  }
}

Authorizations

X-Ivy-Api-Key
string
header
required

API key for authentication

Body

application/json

Response

200 - application/json

The list of transactions

The response is of type object.