with Followup and SMSlink nc?
The Followup API facilitates the automation of email follow-ups, allowing users to schedule, track, and manage follow-up emails directly within their workflow. By integrating with Pipedream, you can leverage the API to craft intricate automation sequences that can improve response rates, ensure timely engagements, and enhance overall email productivity. Taking advantage of Pipedream's serverless platform, you can connect the Followup API with hundreds of other services to streamline communication tasks, set up reminders, or trigger actions based on email interactions.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
followup: {
type: "app",
app: "followup",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.followup.cc/v1/reminders.json`,
params: {
api_key: `${this.followup.$auth.api_key}`,
},
})
},
})
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
smslink_nc: {
type: "app",
app: "smslink_nc",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.smslink.nc/api/user/me`,
headers: {
Authorization: `Bearer ${this.smslink_nc.$auth.personal_access_token}`,
"accept": `application/json`,
},
})
},
})