Yespo is a Marketing Automation Service made to embody the toughest ideas of enterprise level solutions in very clear and efficient way for everyone.
Adds a new contact or updates an existing one. See the documentation
Generates and sends an email using the assigned template. See the documentation
The Yespo API offers a platform for personalized customer engagement through multichannel marketing automation. By integrating Yespo with Pipedream, you can create custom workflows that trigger based on customer interactions or data changes. This allows for dynamic campaign management, customer segmentation, and real-time analytics, enabling you to automate and scale personalized marketing efforts efficiently.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
yespo: {
type: "app",
app: "yespo",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://yespo.io/api/v1/account/info`,
headers: {
"Accept": `application/json; charset=UTF-8`,
},
auth: {
username: `x`,
password: `${this.yespo.$auth.api_key}`,
},
})
},
})
The SWAPI - Star Wars API is a treasure trove of structured data from the Star Wars universe. It's a go-to resource for fetching information about planets, spaceships, vehicles, people, films, and species from the iconic franchise. Using Pipedream, you can harness this data to create automations and workflows that trigger based on specific criteria from SWAPI. For instance, you could set up a workflow that notifies you when new data is added, enrich customer profiles with their favorite Star Wars characters, or even use it for trivia games by pulling random facts.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
swapi: {
type: "app",
app: "swapi",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://swapi.dev/api/films/1/`,
})
},
})