Connect everything. Achieve anything. Accelerate work and unlock potential with powerful apps that connect your data, workflows and teams.
Make a GET request to https://api.sendpulse.com/emails/{email}
Make a POST request to https://api.sendpulse.com/addressbooks/{id}/emails/unsubscribe
Create one or more records in a table by passing an array of objects containing field names and values as key/value pairs.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
airtable_oauth: {
type: "app",
app: "airtable_oauth",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.airtable.com/v0/meta/whoami`,
headers: {
Authorization: `Bearer ${this.airtable_oauth.$auth.oauth_access_token}`,
},
})
},
})
SendPulse is a powerful platform that lets you send emails, push notifications,
and SMS messages using their API. It offers advanced features such as email
segmentation, autoresponders, advanced analytics, and more. With the SendPulse
API, you can build amazing automated marketing solutions that can help you
increase conversions, reach more users, and boost your customer engagement.
Send pulse API can be used to build:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendpulse: {
type: "app",
app: "sendpulse",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendpulse.com/senders`,
headers: {
Authorization: `Bearer ${this.sendpulse.$auth.oauth_access_token}`,
},
})
},
})