Spotlightr

Video hosting platform that is designed for course creators and e-learning.

Integrate the Spotlightr API with the Clientary API

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

Create Client with Clientary API on New Video View from Spotlightr API
Spotlightr + Clientary
 
Try it
Create Estimate with Clientary API on New Video View from Spotlightr API
Spotlightr + Clientary
 
Try it
Create Expense with Clientary API on New Video View from Spotlightr API
Spotlightr + Clientary
 
Try it
Create Invoice with Clientary API on New Video View from Spotlightr API
Spotlightr + Clientary
 
Try it
Create Task with Clientary API on New Video View from Spotlightr API
Spotlightr + Clientary
 
Try it
New Video View from the Spotlightr API

Emit new event when a specific video is viewed by a user.

 
Try it
New Client Created from the Clientary API

Emit new events when a new client was created. See the docs

 
Try it
New Contact Created from the Clientary API

Emit new events when a new contact was created. See the docs

 
Try it
New Estimate Created from the Clientary API

Emit new events when a new estimate was created. See the docs

 
Try it
New Expense Created from the Clientary API

Emit new events when a new expense was created. See the docs

 
Try it
Create Video with the Spotlightr API

Create a video in an application. See the documentation

 
Try it
Create Client with the Clientary API

Creates a new client. See docs here

 
Try it
Delete Videos with the Spotlightr API

Delete videos from your account. See the documentation

 
Try it
Create Estimate with the Clientary API

Creates a new estimate. See docs here

 
Try it
Create Expense with the Clientary API

Creates a new expense. See docs here

 
Try it

Overview of Spotlightr

The Spotlightr API provides a platform for users to interact with their Spotlightr video content and analytics programmatically. Using Pipedream, you can automate various tasks such as uploading videos, managing video settings, and retrieving video analytics. This empowers you to integrate video-related workflows into your business processes, enhance content management, and gain insights from video engagement data, all through serverless workflows.

Connect Spotlightr

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    spotlightr: {
      type: "app",
      app: "spotlightr",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.spotlightr.com/api/videos`,
      params: {
        vooKey: `${this.spotlightr.$auth.api_key}`,
      },
    })
  },
})

Overview of Clientary

The Clientary API allows you to automate and integrate Clientary's project management, time tracking, and invoicing functionalities within Pipedream. By leveraging this API, you can create custom workflows to streamline operations, such as syncing new invoices with accounting software, triggering notifications based on project updates, or automating time tracking entries. Pipedream acts as the glue, enabling you to connect Clientary with hundreds of other apps to create sophisticated, serverless workflows tailored to your business needs.

Connect Clientary

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    clientary: {
      type: "app",
      app: "clientary",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.clientary.$auth.domain}.clientary.com/api/v2/staff`,
      headers: {
        "accept": `application/json`,
      },
      auth: {
        username: `${this.clientary.$auth.api_token}`,
        password: `${this.clientary.$auth.api_token}`,
      },
    })
  },
})