Skip to main content
GET /service/accounts/:accountId/transactions

List transactions

Get transactions for account if allowed by the scope of the consent, sorted from latest to oldest

Path Parameters
    accountId AccountId required

    Get list of transactions for given account (if allowed by the consent scope)

Query Parameters
    consentId ConsentId required

    Consent id

    from date-time

    From transaction booked time (including) if not given the last transaction is first

    until date-time

    Until transaction booked time (excluding)

    cursor string
Responses

List of transactions


Schema
    data object[]
  • Array [
  • id TransactionId

    Unique transaction id

    created date-time

    RFC 3339 date time format (2007-11-06T16:34:41.000Z)

    executed date-time

    RFC 3339 date time format (2007-11-06T16:34:41.000Z)

    accountId AccountId

    Unique account id

    description string

    Transaction description

    details object
    reference string

    Transaction reference if available

    description string

    Additional transaction description

    source string

    Transaction source name or other info if available

    target string

    Transaction target name or other info if available

    exchange object

    Currency exchange rate if applicable to transaction

    source CurrencyCode

    ISO 4217 currency code.

    target CurrencyCode

    ISO 4217 currency code.

    unit CurrencyCode

    ISO 4217 currency code.

    exchangeRate decimal

    Amount of transaction in format: 0.00 without thousand separator, exact to two decimal places.
    NOTE: If amount is provided with more than two decimal places then amount will be rounded to two decimal paces.

    amount decimal

    Amount of transaction in format: 0.00 without thousand separator, exact to two decimal places.
    NOTE: If amount is provided with more than two decimal places then amount will be rounded to two decimal paces.

    balance decimal

    Amount of transaction in format: 0.00 without thousand separator, exact to two decimal places.
    NOTE: If amount is provided with more than two decimal places then amount will be rounded to two decimal paces.

    currency CurrencyCode

    ISO 4217 currency code.

    status AccountTransactionStatus

    Possible values: [booked, pending]

    Account transaction status (booked or pending).

    source IBAN

    Possible values: >= 15 characters and <= 34 characters

    IBAN account number with country prefix

    target IBAN

    Possible values: >= 15 characters and <= 34 characters

    IBAN account number with country prefix

    categorization object
    code string

    Possible values: <= 4 characters

    Transaction category code (based on ISO 18245:2023 merchant category codes). As recognized by our categorization engine.

    description string

    Possible values: <= 512 characters

    Transaction category description as recognized by our categorization engine. Not necessary coinciding with the recognized category code.

    groupId integer

    Transaction category group id category code belong to

    groupDescription string

    Transaction category group description

  • ]
  • metadata object
    next_cursor string
Loading...