What do you want to automate

with Setmore and Fileforge?

Prompt, edit and deploy AI agents that connect to Setmore, Fileforge and 2,500+ 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
Generate PDF with Fileforge API on New Appointment Created from Setmore API
Setmore + Fileforge
 
Try it
New Appointment Created from the Setmore API

Emit new event when a new appointment is created in Setmore. See the documentation

 
Try it
Create Appointment with the Setmore API

Create a new appointment in Setmore Appointments. See the documentation

 
Try it
Generate PDF with the Fileforge API

Generate a PDF from provided HTML. See the documentation

 
Try it
Create Customer with the Setmore API

Create a new customer in Setmore Appointments. See the documentation

 
Try it
Integrate the Setmore API with the Fileforge API
Setup the Setmore API trigger to run a workflow which integrates with the Fileforge API. Pipedream's integration platform allows you to integrate Setmore and Fileforge remarkably fast. Free for developers.

Overview of Setmore

The Setmore API opens doors to automating appointment scheduling and calendar management, allowing you to sync appointments, customer information, and services across different platforms. This seamless integration through Pipedream can trigger workflows from new appointments, update external CRMs with customer data, or prep team communication channels with upcoming schedule details. By harnessing the Setmore API on Pipedream, you're equipping yourself to orchestrate complex operations with simplicity and precision.

Connect Setmore

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    setmoreappointments: {
      type: "app",
      app: "setmoreappointments",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://developer.setmore.com/api/v1/bookingapi/staffs`,
      headers: {
        Authorization: `Bearer ${this.setmoreappointments.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Connect Fileforge

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
import { axios } from "@pipedream/platform"
export default defineComponent({
  props: {
    fileforge: {
      type: "app",
      app: "fileforge",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://api.fileforge.com/status/`,
      headers: {
        "Accept": `application/json`,
        "X-API-Key": `${this.fileforge.$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