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.
Write custom Node.js code and use any of the 400k+ npm packages available. Refer to the Pipedream Node docs to learn more.
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}`,
},
})
},
})
Develop, run and deploy your Node.js code in Pipedream workflows, using it between no-code steps, with connected accounts, or integrate Data Stores and File Stores.
This includes installing NPM packages, within your code without having to manage a package.json
file or running npm install
.
Below is an example of installing the axios
package in a Pipedream Node.js code step. Pipedream imports the axios
package, performs the API request, and shares the response with subsequent workflow steps:
// To use previous step data, pass the `steps` object to the run() function
export default defineComponent({
async run({ steps, $ }) {
// Return data to use it in future steps
return steps.trigger.event
},
})