The Only Interactive Video CX Platform You Ever Need to Create, Send & Track B2B Videos.
Emit new event when any of the selected events are triggered.
Trigger your workflow on one or more days each month at a specific time (with timezone support).
Trigger your workflow on one or more days each week at a specific time (with timezone support).
Sends a personalization request for a specified video. See the documentation
The Hippo Video API lets you harness the power of video in your business processes. Through Pipedream, you can automate video creation, management, and distribution workflows. This means you can trigger actions in Hippo Video based on events from other apps, or use Hippo Video events to kick off processes elsewhere. Whether it's automating video emails in your CRM, monitoring video analytics, or managing video content at scale, Pipedream's serverless platform empowers you to build and run workflows seamlessly.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
hippo_video: {
type: "app",
app: "hippo_video",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://www.hippovideo.io/api/v1/me/videos/list`,
params: {
email: `${this.hippo_video.$auth.email}`,
api_key: `${this.hippo_video.$auth.api_key}`,
},
})
},
})
The Schedule app in Pipedream is a powerful tool that allows you to trigger workflows at regular intervals, ranging from every minute to once a year. This enables the automation of repetitive tasks and the scheduling of actions to occur without manual intervention. By leveraging this API, you can execute code, run integrations, and process data on a reliable schedule, all within Pipedream's serverless environment.