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 Schedule API

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

Create Render with MoDeck API on Custom Interval from Schedule API
Schedule + MoDeck
 
Try it
Create Render with MoDeck API on Daily schedule from Schedule API
Schedule + MoDeck
 
Try it
Create Render with MoDeck API on Monthly Schedule from Schedule API
Schedule + MoDeck
 
Try it
Create Render with MoDeck API on Weekly schedule from Schedule API
Schedule + MoDeck
 
Try it
Custom Interval from the Schedule API

Trigger your workflow every N hours, minutes or seconds.

 
Try it
New Render Completed from the MoDeck API

Emit new event when a render is completed.

 
Try it
Daily schedule from the Schedule API

Trigger your workflow every day.

 
Try it
Monthly Schedule from the Schedule API

Trigger your workflow on one or more days each month at a specific time (with timezone support).

 
Try it
Weekly schedule from the Schedule API

Trigger your workflow on one or more days each week at a specific time (with timezone support).

 
Try it
Create Render with the MoDeck API

Create a new edit with the data supplied. 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 Schedule

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.