# List shelter animal bookings Returns a paginated list of Shelter Animal Bookings for the specified site. Supports filtering and sorting. Endpoint: GET /site/{siteId}/ahds/v1/shelter-animal-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", "comment", "endAt", "shelterResourceName", "startAt" - `sortOrder` (string) Sort order Enum: "asc", "desc" - `animalId` (string) Reference to the animal associated with this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `comment` (string) Free-text notes about the booking. - `consultId` (string) Optional reference to a related consult/visit. Example: "123e4567-e89b-12d3-a456-426614174000" - `contactId` (string) Reference to the primary contact associated with this booking (e.g., adopter, foster, organization). Example: "123e4567-e89b-12d3-a456-426614174000" - `isActive` (boolean) Whether this booking is currently active. - `shelterResourceId` (string) Reference to the shelter resource (e.g., kennel, run, room) being booked. Example: "123e4567-e89b-12d3-a456-426614174000" - `shelterResourceName` (string) Human-readable name of the shelter resource at the time of booking. - `shelterResourceOwnershipId` (string) Reference to the ownership record of the shelter resource, if applicable. Example: "123e4567-e89b-12d3-a456-426614174000" - `shelterResourcePlaceId` (string) Reference to the shelter place/location associated with this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `status` (string) Current status of the shelter animal booking. Enum: "planned", "in-progress", "completed", "cancelled", "no-show", "on-hold", "unknown" ## Response 200 fields ## Response 401 fields