Hippo Video

The Only Interactive Video CX Platform You Ever Need to Create, Send & Track B2B Videos.

Integrate the Hippo Video API with the Stripe API

Setup the Hippo Video API trigger to run a workflow which integrates with the Stripe API. Pipedream's integration platform allows you to integrate Hippo Video and Stripe remarkably fast. Free for developers.

Create Contact with Hippo Video API on New Custom Webhook Events from Stripe API
Stripe + Hippo Video
 
Try it
Send Personalization Request with Hippo Video API on New Custom Webhook Events from Stripe API
Stripe + Hippo Video
 
Try it
Upload Video with Hippo Video API on New Custom Webhook Events from Stripe API
Stripe + Hippo Video
 
Try it
Cancel a Payment Intent with Stripe API on New Event Triggered (Instant) from Hippo Video API
Hippo Video + Stripe
 
Try it
Cancel Or Reverse a Payout with Stripe API on New Event Triggered (Instant) from Hippo Video API
Hippo Video + Stripe
 
Try it
New Custom Webhook Events from the Stripe API

Emit new event on each webhook event

 
Try it
New Event Triggered (Instant) from the Hippo Video API

Emit new event when any of the selected events are triggered.

 
Try it
Canceled Subscription from the Stripe API

Emit new event for each new canceled subscription

 
Try it
New Abandoned Cart from the Stripe API

Emit new event when a customer abandons their cart.

 
Try it
New Customer from the Stripe API

Emit new event for each new customer

 
Try it
Create Contact with the Hippo Video API

Creates a new contact in Hippo Video. See the documentation

 
Try it
Cancel a Payment Intent with the Stripe API

Cancel a payment intent. Once canceled, no additional charges will be made by the payment intent and any operations on the payment intent will fail with an error. For payment intents with status=requires_capture, the remaining amount_capturable will automatically be refunded. See the docs for more information

 
Try it
Send Personalization Request with the Hippo Video API

Sends a personalization request for a specified video. See the documentation

 
Try it
Cancel Or Reverse a Payout with the Stripe API

Cancel or reverse a payout. A payout can be canceled only if it has not yet been paid out. A payout can be reversed only if it has already been paid out. Funds will be refunded to your available balance. See the docs for more information

 
Try it
Upload Video with the Hippo Video API

Uploads a video from a given URL. See the documentation

 
Try it

Overview of Hippo Video

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.

Connect Hippo Video

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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}`,
      },
    })
  },
})

Overview of Stripe

The Stripe API is a powerful tool for managing online payments, subscriptions, and invoices. With Pipedream, you can leverage this API to automate payment processing, monitor transactions, and sync billing data with other services. Pipedream's no-code platform allows for quick integration and creation of serverless workflows that react to Stripe events in real-time. For instance, you might automatically update customer records, send personalized emails after successful payments, or escalate failed transactions to your support team.

Connect Stripe

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import stripe from 'stripe'

export default defineComponent({
  props: {
    stripe: {
      type: "app",
      app: "stripe",
    }
  },
  async run({steps, $}) {
    const client = stripe(this.stripe.$auth.api_key)

    return await client.accounts.list({ limit: 1 })
  },
})