with npm and Booking Experts?
Emit new event with the latest count of downloads for an npm package. See the documentation
Emit new event when a new version of an npm package is published. See the documentation
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
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
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`,
},
})
},
})