# Retrieve list of all tags for specified booking Retrieve a comprehensive list of all tags associated with a specific booking within the Property Management System (PMS). Tags provide additional metadata and categorization for bookings, allowing for better organization and filtering. This endpoint ensures that all tags linked to the booking are accessible, facilitating efficient management and tracking of reservations. Endpoint: GET /api/v3/bookings/{id}/tags Version: 3.0.4 Security: OAuth2 ## Path parameters: - `id` (integer, required) ID of the booking ## Response 200 fields (application/json): - `content` (array) - `content.id` (integer) The id of the tag - `content.name` (string) The name of the tag - `content.tagType` (object) The type of the tag - `content.tagType.id` (integer) The id of the tag type - `content.tagType.name` (string) The name of the tag type - `content.tagType.description` (string) The description of the tag type - `content.tagType.category` (string) The category of the tag type Enum: "ACTIVITIES", "BOOKING", "CRM_COMPANY", "CRM_CONTACT", "ISSUES", "GLOBAL", "PROPERTY_UNITS", "WORKSHEETS", "ROOM_STAY" - `content.sortOrder` (integer) The sort order of the tag - `page` (object) - `page.size` (integer) - `page.totalElements` (integer) - `page.totalPages` (integer) - `page.number` (integer)