What do you want to automate

with Canvas and DigitalOcean Gradient™ AI Serverless Inference?

Prompt, edit and deploy AI agents that connect to Canvas, DigitalOcean Gradient™ AI Serverless Inference and 3,000+ other apps in seconds.

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
List Assignments with the Canvas API

Retrieve a list of assignments for a course. See the documentation

 
Try it
List Courses with the Canvas API

List all the courses associated with a given user. See the documentation

 
Try it
Search Course Content with the Canvas API

Search for content in a course. See the documentation

 
Try it
Update Assignment with the Canvas API

Update an assignment. See the documentation

 
Try it
Integrate the Canvas API with the DigitalOcean Gradient™ AI Serverless Inference API
Setup the Canvas API trigger to run a workflow which integrates with the DigitalOcean Gradient™ AI Serverless Inference API. Pipedream's integration platform allows you to integrate Canvas and DigitalOcean Gradient™ AI Serverless Inference remarkably fast. Free for developers.

Overview of Canvas

The Canvas API allows you to tap into the power of the Canvas Learning Management System, enabling educators and administrators to automate tasks, synchronize educational tools, and manage courses and users programmatically. It provides endpoints for accessing course information, user details, assignments, and more, which can be incredibly useful for creating customized educational experiences and streamlining administrative workflows. With Pipedream, you can harness these capabilities to trigger actions, connect with other apps and services, and create complex automations without writing extensive code.

Connect Canvas

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: {
    canvas: {
      type: "app",
      app: "canvas",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.canvas.$auth.domain}/api/v1/users/self`,
      headers: {
        Authorization: `Bearer ${this.canvas.$auth.oauth_access_token}`,
      },
    })
  },
})

Connect DigitalOcean Gradient™ AI Serverless Inference

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: {
    digitalocean_gradient_ai_serverless_inference: {
      type: "app",
      app: "digitalocean_gradient_ai_serverless_inference",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://inference.do-ai.run/v1/models`,
      headers: {
        Authorization: `Bearer ${this.digitalocean_gradient_ai_serverless_inference.$auth.api_key}`,
      },
    })
  },
})

Trusted by 1,000,000+ developers from startups to Fortune 500 companies

Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo
Adyen logo
Appcues logo
Bandwidth logo
Checkr logo
ChartMogul logo
Dataminr logo
Gopuff logo
Gorgias logo
LinkedIn logo
Logitech logo
Replicated logo
Rudderstack logo
SAS logo
Scale AI logo
Webflow logo
Warner Bros. logo