Stannp

Create and send postal Direct Mail campaigns: letters or postcards.

Integrate the Stannp API with the Google Drive API

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

Add File Sharing Preference with Google Drive API on New Campaign Created from Stannp API
Stannp + Google Drive
 
Try it
Add File Sharing Preference with Google Drive API on New Recipient Created from Stannp API
Stannp + Google Drive
 
Try it
Copy File with Google Drive API on New Campaign Created from Stannp API
Stannp + Google Drive
 
Try it
Copy File with Google Drive API on New Recipient Created from Stannp API
Stannp + Google Drive
 
Try it
Create a New Campaign with Stannp API on Changes to Specific Files (Shared Drive) from Google Drive API
Google Drive + Stannp
 
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 Campaign Created from the Stannp API

Emit new event when a new campaign is created in Stannp.

 
Try it
New Recipient Created from the Stannp API

Emit new event when a new recipient is created.

 
Try it
New Files (Instant) from the Google Drive API

Emit new event any time a new file is added in your linked Google Drive

 
Try it
Create a New Campaign with the Stannp API

Create a new campaign in Stannp. 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 a New Recipient with the Stannp API

Creates a new recipient in a specified group. See the Stannp documentation

 
Try it
Get a Single Campaign with the Stannp API

Get a single campaign based on the provided campaign ID. 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

Overview of Stannp

The Stannp API integrates with Pipedream to automate direct mail campaigns. You can create, manage, and send personalized postcards, letters, or flyers using Stannp's services. With Pipedream's serverless platform, you can connect Stannp to various triggers and actions, creating workflows that handle everything from customer outreach to event-triggered mailings. This combination is powerful for businesses looking to blend digital and physical marketing strategies seamlessly.

Connect Stannp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    stannp: {
      type: "app",
      app: "stannp",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.stannp.$auth.region}.stannp.com/api/v1/users/me`,
      auth: {
        username: `${this.stannp.$auth.api_key}`,
        password: ``,
      },
    })
  },
})

Overview of Google Drive

The Google Drive API on Pipedream allows you to automate various file management tasks, such as creating, reading, updating, and deleting files within your Google Drive. You can also share files, manage permissions, and monitor changes to files and folders. This opens up possibilities for creating workflows that seamlessly integrate with other apps and services, streamlining document handling, backup processes, and collaborative workflows.

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