An editorial newsletter tool for writers and publishers
Emit new events each time a row or rows are added to the bottom of a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Row Added (Shared Drive, Instant) source instead.
Emit new events each time a row or rows are added to the bottom of a spreadsheet in a shared drive
Emit new event each time a row or cell is updated in a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Updates (Shared Drive, Instant) source instead.
Emit new event each time a row or cell is updated in a spreadsheet in a shared drive
Emit new event each time a new worksheet is created in a spreadsheet. To use this source with a spreadsheet in a Shared Drive, use the New Worksheet (Shared Drive, Instant) source instead.
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}`,
},
})
},
})
Some examples of things you can build using the Google Sheets API include:
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
google_sheets: {
type: "app",
app: "google_sheets",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.googleapis.com/oauth2/v1/userinfo`,
headers: {
Authorization: `Bearer ${this.google_sheets.$auth.oauth_access_token}`,
},
})
},
})