tidyCal.getBooking retrieves one booking by its numeric TidyCal ID.
automations/get-tidycal-booking.automation.ts
403 when the account cannot view the booking and 404 when it does not exist.Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Retrieves one TidyCal booking.
tidyCal.getBooking retrieves one booking by its numeric TidyCal ID.
import { automation, onDashboardRun } from "automate.ax"
import { tidyCal } from "automate.ax/tidycal"
export default automation("Get TidyCal booking", () => {
onDashboardRun({ title: "Get TidyCal booking" })
tidyCal.getBooking({ bookingId: 123 })
})
403 when the account cannot view the booking and 404 when it does not exist.