Trigger workflows on an interval or cron schedule.
Add tags to a new subscriber See the documentation.
Create a new subscriber into a list See the documentation.
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.
The GiantCampaign API facilitates the automation and integration of email marketing capabilities into various applications and workflows. With this API, you can manage contact lists, design and send email campaigns, track performance metrics, and segment your audience for targeted marketing. Pipedream, with its ability to connect to hundreds of apps, provides a robust platform to create serverless workflows that leverage the capabilities of GiantCampaign. By tapping into event sources and actions, you can seamlessly integrate GiantCampaign with other services to enhance your marketing efforts and streamline processes.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
giantcampaign: {
type: "app",
app: "giantcampaign",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://acc.giantcampaign.com/api/v1/lists`,
headers: {
"accept": `application/json`,
},
params: {
api_token: `${this.giantcampaign.$auth.api_token}`,
},
})
},
})