View as Markdown
BambooHR icon

BambooHR ACTION

List Applications

List all applications. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's BambooHR account once, then configure and run List Applications 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: "bamboohr-list-applications",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    bamboohr: { authProvisionId: "apn_xxxxxxx" },
    jobId: "Job ID",
    statusId: "Status ID",
  },
})

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 Applications inputs
Property Type Description
jobId Job ID string
The ID of a job
Optional Dynamic
statusId Status ID string
The ID of a job status
Optional Dynamic
statusGroup Status Group string
The group of statuses to filter by
Optional
jobStatusGroup Job Status Group string
The group of job statuses to filter by
Optional
searchString Search String string
A general search criteria by which to find applications
Optional
sortBy Sort By string
The field to sort by
Optional
sortOrder Sort Order string
The order in which to sort the results
Optional
newSince New Since string
Only get applications newer than a given UTC timestamp, for example 2024-01-01 13:00:00
Optional
page Page integer
The page number 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
bamboohr-list-applications
Version
0.0.2
App
BambooHR
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes