One customer called us "Shopify for local businesses that offer neighborhood services!" We love it. Enjoy simple, powerful, online booking!
Go to siteWith the Launch27 API, you can build a wide variety of applications and integrations. Here are just a few examples:
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`,
},
})
},
})
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:
POST
https://{{custom_fields.domain}}.launch27.com/latest/login
content-type: application/json
accept: application/json
email={{custom_fields.email}}
&
password={{custom_fields.password}}