# List bookings Returns a paginated list of Bookings for the specified site. Supports filtering and sorting. Endpoint: GET /site/{siteId}/ahds/v1/booking Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier ## Query parameters: - `page` (number) Page number (0-indexed) - `pageSize` (number) Number of items per page - `sortBy` (string) Field to sort by Enum: "createdAt", "updatedAt", "description", "durationMinutes", "startsAt" - `sortOrder` (string) Sort order Enum: "asc", "desc" - `animalId` (string) Identifier of the animal for this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `appointmentId` (string) Identifier of the underlying appointment record, if modeled separately. Example: "123e4567-e89b-12d3-a456-426614174000" - `contactId` (string) Identifier of the primary contact (e.g., owner) for this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `description` (string) Free-text description or reason for the appointment. - `providerId` (string) Identifier of the primary provider/resource for this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `status` (string) Current booking status. Enum: "no_status", "confirmed", "unconfirmed" ## Response 200 fields ## Response 401 fields