Yoast is your go-to resource for everything SEO 🎯 We help you rank your WordPress website
Allows you to add one or more email addresses to the global suppressions group. See the docs here
Allows you to create a new contact list. See the docs here
Allows you to delete all email addresses on your blocks list. See the docs here
The Yoast SEO API enables automation of SEO tasks and retrieval of data to optimize website content for search engines directly through Pipedream. Connect the Yoast SEO API to analyze pages, manage metadata, and improve search rankings. Pipedream's serverless platform makes it easy to build complex workflows linking Yoast SEO with other services, triggering actions based on content changes, SEO scores, or other criteria.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yoast_seo: {
type: "app",
app: "yoast_seo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://${this.yoast_seo.$auth.url}/wp-json/yoast/v1/get_head`,
auth: {
username: `${this.yoast_seo.$auth.username}`,
password: `${this.yoast_seo.$auth.application_password}`,
},
params: {
url: `{replace_with_your_url}`,
},
})
},
})
The Twilio SendGrid API opens up a world of possibilities for email automation, enabling you to send emails efficiently and track their performance. With this API, you can programmatically create and send personalized email campaigns, manage contacts, and parse inbound emails for data extraction. When you harness the power of Pipedream, you can connect SendGrid to hundreds of other apps to automate workflows, such as triggering email notifications based on specific actions, syncing email stats with your analytics, or handling incoming emails to create tasks or tickets.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
sendgrid: {
type: "app",
app: "sendgrid",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.sendgrid.com/v3/user/account`,
headers: {
Authorization: `Bearer ${this.sendgrid.$auth.api_key}`,
},
})
},
})