An editorial newsletter tool for writers and publishers
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
With the Revue API you can build powerful newsletters that engage and excite
your readers. Create custom newsletters that are tailored to your content and
your audience. Publish rich, mobile-optimized newsletters in minutes by
integrating the Revue API into your website.
With the Revue API you can easily create and deliver newsletters to your
existing subscribers with just a few lines of code. Here are some examples of
what you can build with the Revue API:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
revue: {
type: "app",
app: "revue",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.getrevue.co/api/v2/accounts/me`,
headers: {
"Authorization": `Token ${this.revue.$auth.api_key}`,
},
})
},
})
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})