List bookings
list_bookingsList bookings (appointments) on the YouCanBookMe account. YCBM API: GET /v1/bookings. Filter by profileId (booking page), an after/before time window, cancelled status, and a free-text searchText; select fields with fields. Paginated via page (0-based) + maxResults. Returns a JSON array of bookings.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Pagination page number, 0-based (offset-based paging). Use with maxResults. | |
| after | No | Only bookings starting AFTER this time (ISO 8601, e.g. 2026-07-01T00:00:00Z). | |
| before | No | Only bookings starting BEFORE this time (ISO 8601). | |
| fields | No | Comma-separated field paths to return (e.g. "id,title,startsAt"). Supports dotted paths for nested objects. Omit to get the default field set. | |
| params | No | Additional documented query-string filters to send verbatim (merged with the typed params above). | |
| cancelled | No | Filter by cancelled status: true = only cancelled, false = only active. Omit for all. | |
| profileId | No | Restrict to bookings on this profile (booking page) id. | |
| maxResults | No | Maximum records per page (page size). Defaults to the API's own default when omitted. | |
| searchText | No | Free-text search across booking fields (e.g. attendee name/email). |