Google Contacts

Google Contacts is a contact management service developed by Google. This service is backed by the Google People API.

Integrate the Google Contacts API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on Contact Group Updated from Google Contacts API
Google Contacts + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on Contact Updated from Google Contacts API
Google Contacts + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Contact Created from Google Contacts API
Google Contacts + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Contact Group Created from Google Contacts API
Google Contacts + Google Drive
 
Try it
Copy File with Google Drive API on Contact Group Updated from Google Contacts API
Google Contacts + Google Drive
 
Try it
Contact Group Updated from the Google Contacts API

Emit new event when a contact group is updated. See the documentation

 
Try it
Contact Updated from the Google Contacts API

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

 
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 Contact Created from the Google Contacts API

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

 
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
Create Contact with the Google Contacts API

Creates a contact. See the documentation

 
Try it
Delete Contact with the Google Contacts API

Deletes a contact. See the documentation

 
Try it
Copy File with the Google Drive API

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

 
Try it
Get Contact with the Google Contacts API

Get information about a contact. See the documentation

 
Try it

Overview of Google Contacts

The Google People API lets you manage contact information for people in your
Google account. You can use this API to create and manage contacts, as well as
groups of contacts. With the People API, you can list all the contacts in your
account, as well as their information, such as email addresses, phone numbers,
and contact photos. You can also use the People API to create new contacts, or
to add new information to existing contacts.

Connect Google Contacts

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: {
    google_contacts: {
      type: "app",
      app: "google_contacts",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://people.googleapis.com/v1/people/me`,
      headers: {
        Authorization: `Bearer ${this.google_contacts.$auth.oauth_access_token}`,
      },
      params: {
        personFields: `names,emailAddresses`,
      },
    })
  },
})

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}`,
      },
    })
  },
})