Pipefy

Process Management, Workflow Management Software

Integrate the Pipefy API with the Schedule API

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

Create Card with Pipefy API on Daily schedule from Schedule API
Schedule + Pipefy
 
Try it
Create Card with Pipefy API on Monthly schedule from Schedule API
Schedule + Pipefy
 
Try it
Create Card with Pipefy API on Schedule based on a custom interval from Schedule API
Schedule + Pipefy
 
Try it
Create Card with Pipefy API on Weekly schedule from Schedule API
Schedule + Pipefy
 
Try it
Create Pipe with Pipefy API on Daily schedule from Schedule API
Schedule + Pipefy
 
Try it
Card Created (Instant) from the Pipefy API

Emits an event for each new card created in a Pipe.

 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Card Done (Instant) from the Pipefy API

Emits an event each time a card is moved to Done a Pipe.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Card Expired from the Pipefy API

Emits an event each time a card becomes expired in a Pipe.

 
Try it
Create Card with the Pipefy API

Create a new Card in a Pipe. See the docs here

 
Try it
Create Pipe with the Pipefy API

Creates a pipe. See the docs here

 
Try it
Create Table Record with the Pipefy API

Creates a new table record. See the docs here

 
Try it
Delete Card with the Pipefy API

Deletes a card. See the docs here

 
Try it
Get All Cards with the Pipefy API

Fetches all cards in a pipe. See the docs here

 
Try it

Overview of Pipefy

Using the Pipefy API, it is possible to build powerful workflows that help to streamline the entire process of managing any given task or process. The API provides access to all of Pipefy’s features, allowing developers to create custom-built workflows that are tailored for their specific needs.

With Pipefy’s API, developers can take advantage of the following:

  • Create and manage customized pipelines
  • Automatically trigger events between different phases
  • Track progress and milestones
  • Establish custom notifications
  • Manage resources

Examples of what you can build with the Pipefy API:

  • A workflow to oversee the recruitment process, from applicant submission to onboarding.
  • A workflow to organize the marketing team’s daily, weekly and monthly tasks.
  • A workflow to oversee the development of software products, from planning to the release.
  • An automated system for processing customer requests and complaints.
  • A workflow to manage product releases from inception to launch.

Connect Pipefy

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    pipefy: {
      type: "app",
      app: "pipefy",
    }
  },
  async run({steps, $}) {
    const data = {
      "query": `{ me { name } }`,
    }
    return await axios($, {
      method: "post",
      url: `https://api.pipefy.com/graphql`,
      headers: {
        Authorization: `Bearer ${this.pipefy.$auth.token}`,
      },
      data,
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.