with Claris Filemaker Server OData API and Launch27?
import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
claris_filemaker_server_odata_api: {
type: "app",
app: "claris_filemaker_server_odata_api",
}
},
async run({steps, $}) {
return await axios($, {
url: `${this.claris_filemaker_server_odata_api.$auth.api_url}/fmi/odata/v4/${this.claris_filemaker_server_odata_api.$auth.database_name}/$metadata`,
auth: {
username: `${this.claris_filemaker_server_odata_api.$auth.username}`,
password: `${this.claris_filemaker_server_odata_api.$auth.password}`,
},
})
},
})
Launch27 is a robust platform aimed at helping businesses manage bookings and appointments seamlessly. Leveraging the Launch27 API on Pipedream, users can automate various business processes by connecting their scheduling system with other apps and services. This can include automations like syncing new bookings with a Google Calendar, triggering SMS or email reminders when an appointment is nearing, or compiling customer feedback collected through Launch27 into a CRM platform.
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`,
},
})
},
})