list_appointments
List appointments from Shopmonkey with optional filters for date range, customer, and location. Supports pagination via skip and limit.
Instructions
List appointments from Shopmonkey. Supports filtering and pagination. Date-filtered queries are routed through the /appointment/search endpoint, which applies the range server-side.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| skip | No | Number of records to skip for pagination (default: 0) | |
| limit | No | Maximum number of results to return (default: 25) | |
| endDate | No | Filter by end date (ISO 8601 format) | |
| startDate | No | Filter by start date (ISO 8601 format) | |
| customerId | No | Filter appointments by customer ID | |
| locationId | No | Filter by location ID. Defaults to SHOPMONKEY_LOCATION_ID env var if set. |