View as Markdown
Taleez icon

Taleez ACTION

List Jobs

Retrieves a list of jobs in your company. See the documentation
  • Action
  • Read only
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Taleez account once, then configure and run List Jobs 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: "taleez-list-jobs",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    taleez: { authProvisionId: "apn_xxxxxxx" },
    unitId: "Unit ID",
    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 Jobs inputs
Property Type Description
unitId Unit ID string
Filter by unit ID
Optional Dynamic
status Status string
Filter by job status
Optional
contract Contract string
Filter by job contract
Optional
city City string
Filter by job city
Optional
companyLabel Company Label string
Filter by company label
Optional
tag Tag string
Filter by job tag
Optional
maxResults Max Results integer
The maximum number of jobs to retrieve. Default: 100
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
taleez-list-jobs
Version
0.0.2
App
Taleez
Authentication
API key
Read-only
Yes
Destructive
No
Open world
Yes