View as Markdown
Tidy icon

Tidy ACTION

Update Job

Updaets a job in Tidy. See the documentation
  • Action
  • Writes data
  • Destructive
  • API key
  • SDK
  • MCP

IMPLEMENTATION

Call this tool

Connect a user's Tidy account once, then configure and run Update 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: "tidy-update-job",
  externalUserId: "{external_user_id}", // any stable ID for this user in your system
  configuredProps: {
    tidy: { authProvisionId: "apn_xxxxxxx" },
    jobId: "Job",
    startNoEarlierThanDate: "Start No Earlier Than 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.

Update Job inputs
Property Type Description
jobId Job string
Identifier of a job to update
Required Dynamic
startNoEarlierThanDate Start No Earlier Than Date string
First date a job can be scheduled to start. Formatted like YYYY-MM-DD.
Optional
startNoEarlierThanTime Start No Earlier Than Time string
First time a job can be scheduled to start. Formatted HH:MM.
Optional
endNoLaterThanDate End No Later Than Date string
Latest date a Job can be scheduled to finish. Formatted like YYYY-MM-DD.
Optional
endNoLaterThanTime End No Later Than Time string
Latest time a Job can be scheduled to finish Formatted HH:MM.
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
tidy-update-job
Version
0.0.2
App
Tidy
Authentication
API key
Read-only
No
Destructive
Yes
Open world
Yes