GoCanvas

A simple, drag and drop tool for creating mobile forms.

Go to site
Explore
/
Apps
/
GoCanvas

GoCanvas API Integrations

Build and run workflows using the GoCanvas API. Use 1000s of source-available triggers and actions across 1000+ apps. Or write custom code to integrate any app or API in seconds.

Overview

The GoCanvas API enables you to build applications that can create, edit, and view Canvas documents.

With the GoCanvas API, you can:

  • Create new Canvas documents
  • Edit existing Canvas documents
  • View Canvas documents
  • Delete Canvas documents
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: {
    gocanvas: {
      type: "app",
      app: "gocanvas",
    }
  },
  async run({steps, $}) {
    const data = {
      "username": `${this.gocanvas.$auth.username}`,
    }
    return await axios($, {
      url: `https://www.gocanvas.com/apiv2/forms.xml`,
      headers: {
        Authorization: `Bearer ${this.gocanvas.$auth.api_key}`,
      },
      data,
    })
  },
})

Authentication

GoCanvas uses API keys for authentication. When you connect your GoCanvas account, Pipedream securely stores the keys so you can easily authenticate to GoCanvas APIs in both code and no-code steps.

Go to Account > Account Settings. Scroll down to the Security Settings > API Keys and click Settings.
On this page, check the box to Enable API Keys and then click Create API Key.

For username, use your email address such as test_user@gocanvas.com. See docs.