Create viral loops for your product launch with our waitlists: built-in referral and email marketing, analytics, leaderboards, captcha and more.
Emit new event each time a waitlist is created. See the documentation
Emit new event each time a subscriber is added. See the documentation
Get the duration between two dates in days, hours, minutes, and seconds along with checking if they are the same.
Format a date string to another date string. For more examples on formatting, see the Sugar Date Format documentation.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
waitlist: {
type: "app",
app: "waitlist",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.getwaitlist.com/api/v1/waitlist`,
headers: {
"Content-Type": `application/json`,
"api-key": `${this.waitlist.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})