MoDeck

Create video templates in After Effects, make them editable online by anyone. You control the creative, let your team control the content.

Integrate the MoDeck API with the Hookdeck API

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

Create Connection with Hookdeck API on New Render Completed from MoDeck API
MoDeck + Hookdeck
 
Try it
Create Render with MoDeck API on New Event Received (Instant) from Hookdeck API
Hookdeck + MoDeck
 
Try it
Retrieve all Events with Hookdeck API on New Render Completed from MoDeck API
MoDeck + Hookdeck
 
Try it
Retrieve all Requests with Hookdeck API on New Render Completed from MoDeck API
MoDeck + Hookdeck
 
Try it
Retrieve Request Events with Hookdeck API on New Render Completed from MoDeck API
MoDeck + Hookdeck
 
Try it
New Render Completed from the MoDeck API

Emit new event when a render is completed.

 
Try it
New Event Received (Instant) from the Hookdeck API

Emit new event when a new event is received from a HookDeck source.

 
Try it
Create Render with the MoDeck API

Create a new edit with the data supplied. See the documentation

 
Try it
Create Connection with the Hookdeck API

This endpoint creates a connection. See the documentation.

 
Try it
Retrieve all Events with the Hookdeck API

This endpoint lists all events, or a subset of events. See the documentation.

 
Try it
Retrieve all Requests with the Hookdeck API

This endpoint lists all request, or a subset of requests. Requests are sorted by ingested_at date. See the documentation.

 
Try it
Retrieve Request Events with the Hookdeck API

This endpoint retries the events associated with a request. See the documentation.

 
Try it

Overview of MoDeck

The MoDeck API offers an interface for managing playlists and videos within their platform, providing endpoints for various operations like retrieving video details, updating playlists, or managing users. Integrating MoDeck with Pipedream allows you to automate interactions with your MoDeck data, such as syncing playlists, updating video statuses, or triggering actions based on video analytics. With Pipedream's serverless platform, you can build powerful workflows that react to events in real-time, schedule tasks, and connect MoDeck with hundreds of other services.

Connect MoDeck

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    modeck: {
      type: "app",
      app: "modeck",
    }
  },
  async run({steps, $}) {
    const data = {
      "apiKey": `${this.modeck.$auth.api_key}`,
    }
    return await axios($, {
      method: "POST",
      url: `https://api.modeck.io/listdecks`,
      data,
    })
  },
})

Overview of Hookdeck

The Hookdeck API facilitates the management of webhooks, providing reliable webhook delivery, monitoring, and debugging solutions. With this API on Pipedream, you can automate workflows concerning incoming webhook data—transforming, routing, and ensuring they trigger the subsequent actions without fail. This could range from logging data for analysis, conditionally processing and forwarding webhook events to other endpoints, or integrating with third-party services for extended automation.

Connect Hookdeck

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: {
    hookdeck: {
      type: "app",
      app: "hookdeck",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.hookdeck.com/2023-01-01/events`,
      headers: {
        Authorization: `Bearer ${this.hookdeck.$auth.api_key}`,
        "Content-Type": `application/json`,
      },
    })
  },
})