Marketing automation the fun and easy way. You create the content and Loopify does the rest. It’s so simple that even your boss could do it.
Go to siteLoopify API in Pipedream opens doors to creative marketing automation and communication flows. With its suite of tools, you can craft personalized emails, manage campaigns, and handle customer data. Pipedream's serverless platform empowers you to build workflows that react to events in Loopify or to connect with other services, making tasks more streamlined. Whether you're syncing subscriber lists, triggering email sequences, or analyzing campaign performance, Pipedream makes these integrations seamless and scalable.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
loopify: {
type: "app",
app: "loopify",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.loopify.com/users`,
headers: {
Authorization: `Bearer ${this.loopify.$auth.oauth_access_token}`,
},
})
},
})
Sync New Subscribers to CRM: When a new subscriber is added in Loopify, automatically add their details to your CRM platform, like Salesforce. This workflow ensures that your sales team always has the latest leads to work with, without manual data entry.
Trigger Personalized Email Campaigns: Kick off a personalized email campaign in Loopify based on user activity from your app. If a user signs up, completes a purchase, or reaches a milestone, a Pipedream workflow can send this data to Loopify to dispatch a tailored email, enhancing customer engagement.
Analyze Campaign Performance: Gather campaign performance data from Loopify and send it to a Google Sheet for analysis. By setting up a workflow in Pipedream that pulls campaign stats and populates them into a spreadsheet, you can observe trends and measure the effectiveness of your marketing strategies over time.
Adds a contact to an API Entry block in a Loopify flow. See the documentation
Creates or updates a contact in Loopify. If the contact exists, it will be updated; otherwise, a new contact will be created. See the documentation
Loopify uses OAuth authentication. When you connect your Loopify account, Pipedream will open a popup window where you can sign into Loopify and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Loopify API.
Pipedream requests the following authorization scopes when you connect your account:
Admin
GET
https://auth.loopify.com/connect/authorize
?
client_id={{oauth.client_id}}
&
redirect_uri={{oauth.redirect_uri}}
&
state={{oauth.state}}
&
response_type=code
&
scope={{oauth.space_separated_scopes}}
POST
https://auth.loopify.com/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}}
POST
https://auth.loopify.com/token
content-type: application/x-www-form-urlencoded
accept: application/json
client_id={{oauth.client_id}}
&
client_secret={{oauth.client_secret}}
&
grant_type=refresh_token
&
refresh_token={{oauth.refresh_token}}
&
account_guid={{custom_fields.account_guid}}