View as Markdown
Brex (Staging) icon

Brex (Staging) ACTION

List Transactions for Selected Cash Account

Lists all transactions for the specified cash account. See the docs here.
  • Action
  • Read only
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Brex (Staging) account once, then configure and run List Transactions for Selected Cash Account 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: "brex_staging-list-transactions-for-selected-cash-account",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    brex_staging: { authProvisionId: "apn_xxxxxxx" },
    cashAccount: "Cash Account",
    postedAtStart: "Posted At Start",
  },
})

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 for Selected Cash Account inputs
Property Type Description
cashAccount Cash Account string
Cash Account
Required Dynamic
postedAtStart Posted At Start string
Shows only transactions with a posted_at_date on or after this date-time. This parameter is the date-time notation as defined by RFC 3339, section 5.6. Example: 2022-12-12T23:59:59.999
Optional
max Max integer
The maximum amount of registered that will be fetched. Defaults to 500.
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
brex_staging-list-transactions-for-selected-cash-account
Version
0.0.3
App
Brex (Staging)
Authentication
OAuth
Read-only
Yes
Destructive
No
Open world
Yes