Airtable

Connect everything. Achieve anything. Accelerate work and unlock potential with powerful apps that connect your data, workflows and teams.

Integrate the Airtable API with the Google Photos API

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

Add Items To Album with Google Photos API on New Field from Airtable (OAuth) API
Airtable + Google Photos
 
Try it
Add Items To Album with Google Photos API on New or Modified Field from Airtable (OAuth) API
Airtable + Google Photos
 
Try it
Add Items To Album with Google Photos API on New or Modified Records from Airtable (OAuth) API
Airtable + Google Photos
 
Try it
Add Items To Album with Google Photos API on New or Modified Records in View from Airtable (OAuth) API
Airtable + Google Photos
 
Try it
Add Items To Album with Google Photos API on New Records from Airtable (OAuth) API
Airtable + Google Photos
 
Try it
New Field from the Airtable API

Emit new event for each new field created in a table

 
Try it
New or Modified Field from the Airtable API

Emit new event for each new or modified field in a table

 
Try it
New or Modified Records from the Airtable API

Emit new event for each new or modified record in a table

 
Try it
New or Modified Records in View from the Airtable API

Emit new event for each new or modified record in a view

 
Try it
New Records from the Airtable API

Emit new event for each new record in a table

 
Try it
Create Comment with the Airtable API

Create a new comment on a record. See the documentation

 
Try it
Add Items To Album with the Google Photos API

Adds selected items to the selected album. See the documentation

 
Try it
Create Field with the Airtable API

Create a new field in a table. See the documentation

 
Try it
Create Album with the Google Photos API

Creates an album. See the documentation

 
Try it
Create Multiple Records with the Airtable API

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

 
Try it

Connect Airtable

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

Overview of Google Photos

Google Photos is a photo sharing and storage service developed by Google. It
was announced at the Google I/O conference on May 28, 2015. It allows users to
store, share, and edit photos and videos. The service also provides a suite of
tools for developers to build photo-sharing applications.

The Google Photos API provides a set of tools that developers can use to build
applications that enable users to share and edit photos and videos. The API
lets developers create, view, and edit albums, photos, and videos; upload and
download photos and videos; and search for photos and videos.

Albums, photos, and videos can be shared with other users, and users can add
comments to photos and videos. The API also provides a set of tools for
developers to build photo-sharing applications.

Connect Google Photos

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_photos: {
      type: "app",
      app: "google_photos",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://www.googleapis.com/oauth2/v1/userinfo`,
      headers: {
        Authorization: `Bearer ${this.google_photos.$auth.oauth_access_token}`,
      },
    })
  },
})