# Get shelter animal booking Returns a single Shelter Animal Booking by its unique identifier. Endpoint: GET /site/{siteId}/ahds/v1/shelter-animal-booking/{shelterAnimalBookingId} Version: 1.0 Security: bearer ## Path parameters: - `siteId` (number, required) Site identifier - `shelterAnimalBookingId` (string, required) Shelter Animal Booking unique identifier (UUID) ## Response 200 fields (application/json): - `animalId` (string, required) Reference to the animal associated with this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `comment` (string, required) Free-text notes about the booking. - `consultId` (string,null, required) Optional reference to a related consult/visit. Example: "123e4567-e89b-12d3-a456-426614174000" - `contactId` (string, required) Reference to the primary contact associated with this booking (e.g., adopter, foster, organization). Example: "123e4567-e89b-12d3-a456-426614174000" - `createdAt` (string, required) Timestamp when the booking record was created. Example: "2025-01-01T00:00:00.000Z" - `endAt` (string, required) End date and time of the booking. Example: "2025-01-01T00:00:00.000Z" - `extensions` (object, required) Vendor- or practice-specific extensions. - `isActive` (boolean, required) Whether this booking is currently active. - `shelterAnimalBookingId` (string, required) Canonical identifier for this shelter animal booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `shelterResourceId` (string, required) Reference to the shelter resource (e.g., kennel, run, room) being booked. Example: "123e4567-e89b-12d3-a456-426614174000" - `shelterResourceName` (string, required) Human-readable name of the shelter resource at the time of booking. - `shelterResourceOwnershipId` (string, required) Reference to the ownership record of the shelter resource, if applicable. Example: "123e4567-e89b-12d3-a456-426614174000" - `shelterResourcePlaceId` (string, required) Reference to the shelter place/location associated with this booking. Example: "123e4567-e89b-12d3-a456-426614174000" - `startAt` (string, required) Start date and time of the booking. Example: "2025-01-01T00:00:00.000Z" - `status` (string, required) Current status of the shelter animal booking. Enum: "planned", "in-progress", "completed", "cancelled", "no-show", "on-hold", "unknown" - `updatedAt` (string, required) Timestamp when the booking record was last modified. Example: "2025-01-01T00:00:00.000Z" - `bookingType` (object, required) Classification of the shelter animal booking (e.g., intake, adoption hold, foster placement, medical isolation, transfer). - `bookingType.code` (string, required) Code value - `bookingType.system` (string, required) Code system URI - `bookingType.display` (string) Human-readable display ## Response 401 fields ## Response 404 fields