Formsite

Create awesome, professional online forms using our drag and drop builder. Order forms, surveys, integrations and more.

Go to site
Explore
/
Apps
/
Formsite

Formsite API Integrations

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

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: {
    formsite: {
      type: "app",
      app: "formsite",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.formsite.$auth.server}.formsite.com/api/v2/${this.formsite.$auth.user_id}/forms`,
      headers: {
        Authorization: `Bearer ${this.formsite.$auth.access_token}`,
      },
    })
  },
})

Authentication

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

To connect Pipedream with your Formsite account,

  • Copy your access_token and your form's API base URL on your form's Settings > Integrations > Formsite API page
  • If your form's base API URL is https://123.formsite.com/api/v2/abc/forms/h3l1ugunni/, your server is 123 and your user_id is abc