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 Airtable (OAuth) API

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

Create Comment with Airtable API on Contact Group Updated from Google Contacts API
Google Contacts + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on Contact Updated from Google Contacts API
Google Contacts + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Contact Created from Google Contacts API
Google Contacts + Airtable (OAuth)
 
Try it
Create Comment with Airtable API on New Contact Group Created from Google Contacts API
Google Contacts + Airtable (OAuth)
 
Try it
Create Contact with Google Contacts API on New Field from Airtable (OAuth) API
Airtable (OAuth) + Google Contacts
 
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
New Contact Created from the Google Contacts API

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

 
Try it
New Contact Group Created from the Google Contacts API

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

 
Try it
New Field from the Airtable (OAuth) API

Emit new event for each new field created in a table

 
Try it
Create Comment with the Airtable (OAuth) API

Create a new comment on a record. See the documentation

 
Try it
Create Field with the Airtable (OAuth) API

Create a new field in a table. See the documentation

 
Try it
Create Contact with the Google Contacts API

Creates a contact. See the documentation

 
Try it
Create Multiple Records with the Airtable (OAuth) API

Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs. See the documentation

 
Try it
Delete Contact with the Google Contacts API

Deletes a contact. See the documentation

 
Try it

Overview of Google Contacts

The Google Contacts API allows you to integrate your contact data with custom applications, enabling you to sync, manage, and leverage your contact list for a variety of functions. Through Pipedream, you can seamlessly connect the Google Contacts API to various other services, streamlining contact management tasks such as syncing contact details across platforms, automating outreach or follow-ups, and gathering insights from contact interactions.

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 Airtable (OAuth)

Airtable (OAuth) API on Pipedream allows you to manipulate and leverage your Airtable data in a myriad of powerful ways. Sync data between Airtable and other apps, trigger workflows on updates, or process bulk data operations asynchronously. By using Airtable's structured databases with Pipedream's serverless platform, you can craft custom automation solutions, integrate with other services seamlessly, and streamline complex data processes.

Connect Airtable (OAuth)

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: {
    airtable_oauth: {
      type: "app",
      app: "airtable_oauth",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.airtable.com/v0/meta/whoami`,
      headers: {
        Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
      },
    })
  },
})