Launch27

One customer called us "Shopify for local businesses that offer neighborhood services!" We love it. Enjoy simple, powerful, online booking!

Go to site
Explore
/
Apps
/
Launch27

Launch27 API Integrations

Build and run workflows using the Launch27 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

With the Launch27 API, you can build a wide variety of applications and integrations. Here are just a few examples:

  • A simple booking form that allows customers to book appointments with your business
  • A complex appointment scheduler that lets customers book appointments with multiple businesses
  • An integration with your existing appointment scheduling software
  • A system that allows customers to pay for their appointments online
  • A way for customers to cancel or reschedule their appointments
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: {
    launch27: {
      type: "app",
      app: "launch27",
    }
  },
  async run({steps, $}) {
    return await axios($, {
      url: `https://${this.launch27.$auth.domain}.launch27.com/v1/settings`,
      headers: {
        Authorization: `Bearer ${this.launch27.$auth.oauth_access_token}`,
        "Content-Type": `application/json`,
      },
    })
  },
})

Authentication

Launch27 uses OAuth authentication. When you connect your Launch27 account, Pipedream will open a popup window where you can sign into Launch27 and grant Pipedream permission to connect to your account. Pipedream securely stores and automatically refreshes the OAuth tokens so you can easily authenticate any Launch27 API.

Pipedream requests the following authorization scopes when you connect your account:

OAuth Request Configurations:
  1. accessToken
    POSThttps://{{custom_fields.domain}}.launch27.com/latest/logincontent-type: application/jsonaccept: application/json
    email={{custom_fields.email}}&password={{custom_fields.password}}