View as Markdown
Dropboard icon

Dropboard ACTION

Create Job

Creates a new job within Dropboard. See the documentation
  • Action
  • Writes data
  • OAuth
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Dropboard account once, then configure and run Create Job 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: "dropboard-create-job",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    dropboard: { authProvisionId: "apn_xxxxxxx" },
    title: "Title",
    description: "Description",
  },
})

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.

Create Job inputs
Property Type Description
title Title string
The title of the job
Required
description Description string
The description of the job
Required
hiringManagerEmails Hiring Manager Emails string[]
The emails of the hiring managers
Required
status Status string
The status of the job
Optional
locations Locations string[]
Locations of the job
Optional
qualifications Qualifications string
The qualifications required for the job
Optional
responsibilities Responsibilities string
The responsibilities of the job
Optional
compensation Compensation string
The compensation for the job
Optional
openDateStart Open Date Start string
If only open during a timeframe, this is the start day
Optional
openDateEnd Open Date End string
If only open during a timeframe, this is the end day
Optional
jobCode Job Code string
Specify a unique job code. Will be generated if not specified
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
dropboard-create-job
Version
0.0.3
App
Dropboard
Authentication
OAuth
Read-only
No
Destructive
No
Open world
Yes