Google Docs

Use Google Docs to create, edit and collaborate on online documents.

Integrate the Google Docs API with the Formatting API

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

Append Text with the Google Docs API

Append text to an existing document. See the docs

 
Try it
[Data] Convert JSON to String with the Formatting API

Convert an object to a JSON format string

 
Try it
Create a New Document with the Google Docs API

Create a new, empty document. To add content after creating the document, pass the document ID exported by this step to the Append Text action. See the docs

 
Try it
[Data] Parse JSON with the Formatting API

Parse a JSON string

 
Try it
Append Image to Document with the Google Docs API

Appends an image to the end of a document. See the docs

 
Try it

Overview of Google Docs

The Google Docs API allows you to create, read, and update Google Docs programmatically, enabling a wide range of automations and integrations with other apps and services. With Pipedream, you can harness this API to craft custom serverless workflows that trigger on various events, like form submissions, emails, or scheduled times, and perform actions like updating a document, extracting content, or even generating templated reports.

Connect Google Docs

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

Connect Formatting

1
2
3
4
5
6
export default defineComponent({
  async run({ steps, $ }) {
    const text = ' Hello world! ';
    return text.trim()
  },
})