View as Markdown
Ashby icon

Ashby ACTION

List Applications

Retrieves a list of applications within an organization. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Ashby 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: "ashby-list-applications",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    ashby: { authProvisionId: "apn_xxxxxxx" },
    expand: ["Expand"],
    status: "Status",
  },
})

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
expand Expand string[]
Array of fields to expand in the response
Optional
status Status string
Filter by application status
Optional
jobId Job ID string
Filter by job ID to get applications for a specific job
Optional Dynamic
createdAfter Created After string
Filter for applications created after this date and time (e.g., 2024-01-01T00:00:00Z)
Optional
syncToken Sync Token string
Token for syncing changes since the last request
Optional
cursor Cursor string
To retrieve the next page of results, pass the nextCursor returned from the previous run here
Optional
maxResults Max Results integer
Maximum number of results 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
ashby-list-applications
Version
1.0.1
App
Ashby
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes