Wrike

Online project management software

Integrate the Wrike API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on New Folder Created from Wrike API
Wrike + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Subtask Created from Wrike API
Wrike + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Task Created from Wrike API
Wrike + Google Drive
 
Try it
Copy File with Google Drive API on New Folder Created from Wrike API
Wrike + Google Drive
 
Try it
Copy File with Google Drive API on New Subtask Created from Wrike API
Wrike + Google Drive
 
Try it
New Folder Created from the Wrike API

Emit new event when a folder is created

 
Try it
New Subtask Created from the Wrike API

Emit new event when a subtask is created

 
Try it
Changes to Specific Files from the Google Drive API

Watches for changes to specific files, emitting an event any time a change is made to one of those files. To watch for changes to shared drive files, use the Changes to Specific Files (Shared Drive) source instead.

 
Try it
Changes to Specific Files (Shared Drive) from the Google Drive API

Watches for changes to specific files in a shared drive, emitting an event any time a change is made to one of those files

 
Try it
New Task Created from the Wrike API

Emit new event when a task is created

 
Try it
Add File Sharing Preference with the Google Drive API

Add a sharing permission to the sharing preferences of a file or folder and provide a sharing URL. See the docs for more information

 
Try it
New Task with the Wrike API

Create a Wrike task under a specified folder ID. See the docs

 
Try it
Copy File with the Google Drive API

Create a copy of the specified file. See the docs for more information

 
Try it
Update Task Custom Fields with the Wrike API

Update the custom fields for a task. See the docs

 
Try it
Create a New File with the Google Drive API

Create a new file from a URL or /tmp/filepath. See the docs for more information

 
Try it

Overview of Wrike

The Wrike API is an easy-to-use Application Programming Interface that allows
users to build custom apps and other solutions to integrate with the Wrike
platform. With the Wrike API, developers can access and leverage Wrike features
and data to create a wide range of applications and integrations.

The possibilities are almost endless when using the Wrike API. Here are some
examples:

  • Automatically sync your CRM with Wrike
  • Build a custom time-tracking integration to show project- Or task-level
    metrics
  • Create an AI-powered automation tool to route tasks to specific users
  • Develop a project and task management app for internal teams or external
    clients
  • Generate custom reports to keep an eye on project progress
  • Create a custom search engine and analysis tool to monitor user behavior
  • Develop custom tools to automate and streamline task allocation

Connect Wrike

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    wrike: {
      type: "app",
      app: "wrike",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.wrike.$auth.host}/api/v4/contacts`,
      headers: {
        Authorization: `Bearer ${this.wrike.$auth.oauth_access_token}`,
      },
      params: {
        me: `true`,
      },
    })
  },
})

Overview of Google Drive

Using the Google Drive API, you can build applications that:

  • Create and manage files and folders
  • Download and upload files
  • Share and organize files
  • Search for files
  • Track changes to files
  • And much more!

Connect Google Drive

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    google_drive: {
      type: "app",
      app: "google_drive",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_drive.$auth.oauth_access_token}`,
      },
    })
  },
})