Deliver automated, relevant, and timely messages aligned with customers preferences.
Jellyreach API lets you automate your marketing campaigns by triggering personalized emails, SMS, and push notifications based on various customer actions or data. Integrating Jellyreach with Pipedream's serverless platform allows seamless connectivity between Jellyreach and other services, enabling sophisticated multi-channel communication strategies that can be tailored on-the-fly to suit an array of business needs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
jellyreach: {
type: "app",
app: "jellyreach",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.jellyreach.com/v1/contacts`,
headers: {
"Accept": `application/json`,
"Authorization": `${this.jellyreach.$auth.api_key}`,
"Content-Type": `application/json`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.