Skip to main content

Get a filtered list of transaction intents

GET 

/transaction-intents

Get a filtered list of transaction intents

Request

Query Parameters

    queryType string

    Possible values: [ByFromToCreatedOn, ByCustomer, ActiveByCustomerAndMerchant]

    Default value: ByFromToCreatedOn

    createdon_gte date-time

    The min creation datetime of the entries to be returned, in ISO 8601 format of YYYY-MM-DDThh:mm:ssZ in UTC time

    createdon_lte date-time

    The max creation datetime of the entries to be returned, in ISO 8601 format of YYYY-MM-DDThh:mm:ssZ in UTC time

    _limit number

    Default value: 10

    The count of items to be returned (page size)

    _order string

    Possible values: [asc, desc]

    The sort order of items to be returned

    customerId uuid

    The customerId of the transaction intents to be returned. Required if the query type is ByCustomer*

    merchantId uuid

    The customerId of the transaction intents to be returned. Required if the query type is ActiveByCustomerAndMerchant

Responses

Successful response

Schema

    items

    object[]

  • Array [

  • id uuidrequired

    The id of the transaction

    amount numberrequired

    Possible values: <= 10000

    The amount of the transaction

    currency stringrequired

    Possible values: [EUR]

    The currency code as ISO 4217 3-digit code (https://en.wikipedia.org/wiki/ISO_4217).

    customerId uuidrequired

    The unique id of the customer participating in the transaction. Available if type is Passthrough

    type TransactionIntentType (string)required

    Possible values: [PassthroughDeposit, PassthroughWithdrawal, CustomerToMerchantPassthrough, MerchantToCustomerPassthrough]

    The type of the transaction intent, this corresponds to the type of the transaction created from the intent

    state TransactionIntentState (string)required

    Possible values: [Created, PendingApproval, Declined, Pending, Expired, Cancelled, Finalized]

    The current(last) state of the transaction intent.

    createdOn date-time

    The server-generated timestamp of the initial creation of the transaction record, in ISO 8601 format of YYYY-MM-DDThh:mm:ssZ in UTC time

  • ]

Loading...