Deliver personal conversations, anytime and anywhere with Tolstoy interactive videos.
Delay the execution of your workflow for a specific amount of time (does not count against your compute time).
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}`,
},
})
},
})
The Delay API in Pipedream is a built-in function that allows you to pause a workflow for a specified amount of time. This can be incredibly useful when you need to stagger API calls to avoid rate limits, wait for an external process to complete, or simply introduce a delay between actions in a sequence. With precision up to milliseconds, the Delay API provides a simple yet powerful tool for managing timing in automation workflows.
export default defineComponent({
async run({steps, $}) {
// Specify the amount of time to delay your workflow in milliseconds
return $.flow.delay(5000)
},
})