Node package manager
Emit new event with the latest count of downloads for an npm package. See the documentation.
Emit new event when a new version of an npm package is published. See the documentation
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 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}`,
},
})
},
})