Deliver personal conversations, anytime and anywhere with Tolstoy interactive videos.
Customize and send an email to the email address you registered with Pipedream. The email will be sent by notifications@pipedream.com.
The Tolstoy API offers a suite of tools for engaging with customers through interactive video experiences. With it, you can automate the creation, analysis, and management of interactive video content, streamlining how you engage with your audience. By leveraging the Tolstoy API on Pipedream, you can create powerful automations that react to video interactions, manage leads, and trigger personalized follow-ups based on viewer behavior. This supports a more dynamic and responsive marketing strategy, improves lead qualification processes, and enhances customer support by providing interactive video experiences tailored to user actions and feedback.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
tolstoy: {
type: "app",
app: "tolstoy",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.gotolstoy.com/users/me`,
headers: {
Authorization: `Bearer ${this.tolstoy.$auth.api_key}`,
},
})
},
})
export default defineComponent({
async run({ $ }) {
const options = {
subject: 'Your subject here',
text: 'Your text here'
};
$.send.email(options);
},
});