ProWorkflow

Leading project, task and time management software! ProWorkflow is an online project management software that enables you to keep accurate time-keeping records, organize, plan, and delegate jobs and tasks whilst using the timeline to have an overview of company activity.

Integrate the ProWorkflow API with the Notion API

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

Add Client to Project with ProWorkflow API on New Database from Notion API
Notion + ProWorkflow
 
Try it
Add Client to Project with ProWorkflow API on New Page in Database from Notion API
Notion + ProWorkflow
 
Try it
Add Client to Project with ProWorkflow API on Page or Subpage Updated from Notion API
Notion + ProWorkflow
 
Try it
Add Client to Project with ProWorkflow API on Updated Page ID from Notion API
Notion + ProWorkflow
 
Try it
Add Client to Project with ProWorkflow API on Updated Page in Database from Notion API
Notion + ProWorkflow
 
Try it
Contact Updated from the ProWorkflow API

Emit new event when a contact is updated. See the docs.

 
Try it
New Database from the Notion API

Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.

 
Try it
New Company Created from the ProWorkflow API

Emit new event when a new comapny is created. See the docs.

 
Try it
New Page in Database from the Notion API

Emit new event when a page in a database is created

 
Try it
New Contact Created from the ProWorkflow API

Emit new event when a new contact is created. See the docs.

 
Try it
Add Client to Project with the ProWorkflow API

Adds a client to a project. See the docs.

 
Try it
Append Block to Parent with the Notion API

Creates and appends blocks to the specified parent. See the documentation

 
Try it
Add Contact with the ProWorkflow API

Adds a contact. See the docs.

 
Try it
Create Page with the Notion API

Creates a page from a parent page. The only valid property is title. See the documentation

 
Try it
Add Project with the ProWorkflow API

Adds a project. See the docs.

 
Try it

Overview of ProWorkflow

The ProWorkflow API offers a powerhouse of project management and workflow automation capabilities. With Pipedream, you can leverage these abilities to create custom integrations that boost productivity and streamline operations. By tapping into ProWorkflow's endpoints, you can automate project creation, task assignments, time tracking, and report generation. This API dovetails neatly with other apps on Pipedream, allowing you to create multifaceted workflows that respond in real-time to external triggers, such as emails, form submissions, and calendar events.

Connect ProWorkflow

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

Overview of Notion

Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Leveraging Pipedream's platform, you can build workflows that connect Notion with a myriad of other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.

Connect Notion

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: {
    notion: {
      type: "app",
      app: "notion",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.notion.com/v1/users/me`,
      headers: {
        Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
        "Notion-Version": `2021-08-16`,
      },
    })
  },
})