View as Markdown
Beebole icon

Beebole ACTION

Run report

Run a report from Beebole
  • Action
  • Writes data
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Beebole account once, then configure and run Run report 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: "beebole_app-run-report",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    beebole_app: { authProvisionId: "apn_xxxxxxx" },
    begda: "Start date",
    endda: "End date",
  },
})

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.

Run report inputs
Property Type Description
begda Start date string
Start date in ISO format (YYYY-MM-DD)
Required
endda End date string
End date in ISO format (YYYY-MM-DD)
Required
keys Columns string[]
Select the columns to display in the report.
Required
statusFilters Status string[]
Choose approval statuses
Required
groups Groups/Custom fields (optional) string[]
Groups and Custom fields as columns
Optional Dynamic
groupFilters Groups to filter results by (optional) integer[]
List of groups to filter results. Array of internal IDs i.e. [66]
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
beebole_app-run-report
Version
0.0.2
App
Beebole
Authentication
API key
Read-only
No
Destructive
No
Open world
Yes