Instantly helps you find warm leads, scale email campaigns, reach primary inboxes, engage smarter and win more with AI.
Emit new event when an activity occurs in your Instantly workspace.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
instantly: {
type: "app",
app: "instantly",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.instantly.ai/api/v1/authenticate`,
params: {
api_key: `${this.instantly.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ steps, $ }) {
const text = ' Hello world! ';
return text.trim()
},
})