View as Markdown
SumUp icon

SumUp ACTION

List Transactions

Lists detailed history of all transactions associated with the merchant profile. See the documentation
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's SumUp account once, then configure and run List Transactions from your backend or agent.

import { PipedreamClient } from "@pipedream/sdk"

const pd = new PipedreamClient({
  projectId: process.env.PIPEDREAM_PROJECT_ID!,
  clientId: process.env.PIPEDREAM_CLIENT_ID!,
  clientSecret: process.env.PIPEDREAM_CLIENT_SECRET!,
  projectEnvironment: "production",
})

const result = await pd.actions.run({
  id: "sumup-list-transactions",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    sumup: { authProvisionId: "apn_xxxxxxx" },
    transactionCode: "Transaction Code",
    statuses: ["Statuses"],
  },
})

console.log(result)

SCHEMA

Inputs

Pipedream supplies the connected account. Your application provides the operation-specific values below. Dynamic inputs are resolved against that user's account.

List Transactions inputs
Property Type Description
transactionCode Transaction Code string
Transaction code returned by the acquirer/processing entity after processing the transaction
Optional
statuses Statuses string[]
Filter by current status of the transaction
Optional
paymentTypes Payment Types string[]
Filter by payment type used for the transaction
Optional
startDate Start Date string
Earliest transaction date in ISO Format. Example: 2020-02-29T10:56:56.876Z
Optional
endDate End Date string
Latest transaction date in ISO Format. Example: 2020-02-29T10:56:56.876Z
Optional
limit Limit integer
The maximum number of transactions to return
Optional

REFERENCE

Tool details

Behavior hints are published with the component in the Pipedream registry and surface as MCP tool annotations, so an agent can reason about a tool before it calls it.

Registry key
sumup-list-transactions
Version
0.0.3
App
SumUp
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes