All In One Course Creation, Delivery & Marketing Platform
Emit new event when a course is completed. See the docs here
Emit new event when a funnel is created. See the docs here
Emit new event when a new live class is registered. See the docs here
Emit new event when a database is created. Note: Databases must be shared with your Pipedream Integtration to trigger event.
Creates and appends blocks to the specified parent. See the documentation
Creates a page from a parent page. The only valid property is title. See the documentation
The Zenler API lets you tap into your online course platform to automate tasks, streamline student engagement, and track course performance. By harnessing the power of the Zenler API on Pipedream, you can create dynamic serverless workflows that respond to course interactions, manage users, and analyze educational content effectiveness, all in real-time. Whether you're looking to enhance the learning experience, or make your course administration more efficient, the Zenler API on Pipedream offers the tools to make it happen.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
zenler: {
type: "app",
app: "zenler",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.newzenler.com/api/v1/users`,
headers: {
"X-API-Key": `${this.zenler.$auth.api_key}`,
"X-Account-Name": `${this.zenler.$auth.account_name}`,
},
})
},
})
Notion's API allows for the creation, reading, updating, and deleting of pages, databases, and their contents within Notion. Using Pipedream's platform, you can build workflows that connect Notion with various other services to automate tasks such as content management, task tracking, and data synchronization. With Pipedream's serverless execution, you can trigger these workflows on a schedule, or by external events from other services, without managing any infrastructure.
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
notion: {
type: "app",
app: "notion",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.notion.com/v1/users/me`,
headers: {
Authorization: `Bearer ${this.notion.$auth.oauth_access_token}`,
"Notion-Version": `2021-08-16`,
},
})
},
})