Gist

Build personal relationships at scale. Gist offers live chat, email marketing automation, event tracking, and more.

Integrate the Gist API with the Schedule API

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

Add Tag To Existing Contacts with Gist API on Custom Interval from Schedule API
Schedule + Gist
 
Try it
Add Tag To Existing Contacts with Gist API on Daily schedule from Schedule API
Schedule + Gist
 
Try it
Add Tag To Existing Contacts with Gist API on Monthly Schedule from Schedule API
Schedule + Gist
 
Try it
Add Tag To Existing Contacts with Gist API on Weekly schedule from Schedule API
Schedule + Gist
 
Try it
Create Or Update Contact with Gist API on Custom Interval from Schedule API
Schedule + Gist
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
New Contact from the Gist API

Emit new event when a new contact is created

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Add Tag To Existing Contacts with the Gist API

This Action lets you assign a tag to multiple contacts at once. If the tag does not already exist it will be created for you. See docs

 
Try it
Create Or Update Contact with the Gist API

Create or update a contact in Gist See docs

 
Try it
Get Contact with the Gist API

Find a Contact See docs

 
Try it
Remove Tag From Existing Contact with the Gist API

Remove a tag from an existing contact or contacts. See docs

 
Try it

Overview of Gist

The Gist API lets you create, read, update, and delete gists. With the Gist
API, you can manage your code snippets on GetGist.

Here are some examples of what you can build with the Gist API:

  • Create new gists
  • Read existing gists
  • Update existing gists
  • Delete existing gists

Connect Gist

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: {
    gist: {
      type: "app",
      app: "gist",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.getgist.com/teammates`,
      headers: {
        Authorization: `Bearer ${this.gist.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Overview of Schedule

With Schedule - A trigger provided by Pipedream - You can easily build
automated workflows that run on regular times or intervals. Some examples of
things that you can build using the Schedule API include:

  • Automated data retrieval from a third-party service, like pulling stats from
    your Salesforce account on a set schedule.
  • Uploading new data sets to a database with a predetermined interval.
  • Automatic emails to customers or leads at a certain time of the day.
  • Automating data analysis based on a set schedule.
  • Automatically optimizing social media postings according to a specified
    timeline.
  • Updating webpages at a certain interval with newly available content.
  • Re-running reports on a periodic basis.
  • Refreshing a cache of data at a given frequency.