Schedule

Trigger workflows on an interval or cron schedule.

Integrate the Schedule API with the Onfleet API

Setup the Schedule API trigger to run a workflow which integrates with the Onfleet API. Pipedream's integration platform allows you to integrate Schedule and Onfleet remarkably fast. Free for developers.

Create Linked Pickup & Dropoff Tasks with Onfleet API on Custom Interval from Schedule API
Schedule + Onfleet
 
Try it
Create Linked Pickup & Dropoff Tasks with Onfleet API on Daily schedule from Schedule API
Schedule + Onfleet
 
Try it
Create Linked Pickup & Dropoff Tasks with Onfleet API on Monthly Schedule from Schedule API
Schedule + Onfleet
 
Try it
Create Linked Pickup & Dropoff Tasks with Onfleet API on Weekly schedule from Schedule API
Schedule + Onfleet
 
Try it
Create New Task with Onfleet API on Custom Interval from Schedule API
Schedule + Onfleet
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
New SMS Recipient Response Missed (Instant) from the Onfleet API

Emit new event when a new SMS recipient response is missed.

 
Try it
Create Linked Pickup & Dropoff Tasks with the Onfleet API

Create a pickup task and dropoff task linked with each other. See the docs here

 
Try it
Create New Task with the Onfleet API

Create a new task. See the docs here

 
Try it
Create Task (Template Use) with the Onfleet API

Creates a single task. Used for simple templates only. See the docs here

 
Try it

Overview of Schedule

The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.

Overview of Onfleet

The Onfleet API integrates with Pipedream to power logistics and delivery operations, offering real-time tracking, optimized routes, automatic dispatch, analytics, and communication with drivers. With Pipedream's serverless platform, one can automate complex workflows involving Onfleet and other apps, triggering actions based on events, scheduling tasks, or processing data to enhance delivery services.

Connect Onfleet

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    onfleet: {
      type: "app",
      app: "onfleet",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://onfleet.com/api/v2/organization`,
      auth: {
        username: `${this.onfleet.$auth.api_key}`,
        password: ``,
      },
    })
  },
})