import { axios } from "@pipedream/platform"
export default defineComponent({
props: {
booking_experts: {
type: "app",
app: "booking_experts",
}
},
async run({steps, $}) {
return await axios($, {
url: `https://api.bookingexperts.com/v3/users`,
headers: {
"x-api-key": `${this.booking_experts.$auth.api_key}`,
"accept": `application/vnd.api+json`,
},
})
},
})
Emit new event for each booking updated. See the documentation
Emit new event when an inventory object is updated. See the documentation
Emit new event for each new booking created. See the documentation
Emit new event when a new inventory object is created. See the documentation
Add a guest to a reservation.. See the documentation
Returns all complex prices of a master price list. See the documentation
Returns a list of bookings for an administration. See the documentation
Returns inventory objects of the administration. See the documentation
Booking Experts uses API keys for authentication. When you connect your Booking Experts account, Pipedream securely stores the keys so you can easily authenticate to Booking Experts APIs in both code and no-code steps.