Bookingmood integration (Productivity). Imported from open-connector.
https://api.bookingmood.com/v1/products
| Param | Type | Required | Description |
|---|---|---|---|
| select | string | optional | Columns to select from the products endpoint. |
| limit | integer | optional | Maximum number of products to return. |
| offset | integer | optional | Number of products to skip before returning results. |
| order | string | optional | PostgREST order expression for products, such as created_at.desc or updated_at.… |
| id | string | optional | PostgREST filter for a specific product ID. |
| organization_id | string | optional | PostgREST filter for a specific organization ID. |
/bookings
| Param | Type | Required | Description |
|---|---|---|---|
| select | string | optional | Columns to select from the bookings endpoint. |
| limit | integer | optional | Maximum number of bookings to return. |
| offset | integer | optional | Number of bookings to skip before returning results. |
| order | string | optional | PostgREST order expression for bookings, such as created_at.desc or updated_at.… |
| id | string | optional | PostgREST filter for a specific booking ID. |
| organization_id | string | optional | PostgREST filter for a specific organization ID. |
| product_id | string | optional | PostgREST filter for bookings related to a product ID. |
/availability
| Param | Type | Required | Description |
|---|---|---|---|
| product_id | string | required | Bookingmood product ID to query availability for. |
| start | string | optional | Start date for the availability window. |
| end | string | optional | End date for the availability window. |