Build personal relationships at scale. Gist offers live chat, email marketing automation, event tracking, and more.
Go to siteThe Gist API empowers you to automate interactions with your Gist CRM platform, efficiently managing contacts, tags, and conversations. Tapping into this potential with Pipedream allows you to build seamless automation workflows that sync data between Gist and other services, trigger actions based on customer behavior, and keep your sales and support teams aligned with real-time information.
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`,
},
})
},
})
Sync New Subscribers to a Mailing List: Automatically add new subscribers from Gist to your Mailchimp list. When a user subscribes through a Gist form, trigger a Pipedream workflow that adds their contact info to a targeted Mailchimp audience, ensuring they receive your latest marketing emails.
Create Support Tickets from Conversations: Turn Gist conversations into support tickets in Zendesk. Set up a workflow in Pipedream that listens for new messages or tagged conversations in Gist, and automatically creates a corresponding ticket in Zendesk with all the necessary details, streamlining your support process.
Update CRM Contacts with Webinar Attendance: After hosting a webinar via Zoom, use Pipedream to cross-reference attendees with your Gist contacts. Automatically tag contacts who attended the webinar, enriching your CRM with engagement data to inform follow-up campaigns and lead scoring.
Gist uses OAuth authentication. When you connect your Gist account, Pipedream will open a popup window where you can sign into Gist and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Gist API.
Pipedream requests the following authorization scopes when you connect your account:
read_contact
write_contact
read_bulk_contacts
write_bulk_contacts
read_conversations
write_conversations
read_events
read_tags
write_tags
read_teams
read_teammates
GET
https://app.getgist.com/oauth/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://web-api.getgist.com/oauth/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
redirect_uri={{oauth.redirect_uri}}
&
grant_type=authorization_code
&
code={{oauth.code}}