# Retrieve all Tags Fetch a list of all tags within the Property Management System (PMS). This endpoint is useful for retrieving detailed information about tags, including their names and descriptions. The response includes a list of tags, which can be used for categorizing and organizing various system entities. If no tags are found, an empty list will be returned. In case of an unexpected system error, a 500 Internal Server Error will be triggered. Endpoint: GET /api/v3/tags Version: 3.0.9 Security: OAuth2 ## Response 200 fields (application/json): - `totalPages` (integer) - `totalElements` (integer) - `pageable` (object) - `pageable.paged` (boolean) - `pageable.unpaged` (boolean) - `pageable.pageSize` (integer) - `pageable.pageNumber` (integer) - `pageable.offset` (integer) - `pageable.sort` (array) - `pageable.sort.direction` (string) - `pageable.sort.nullHandling` (string) - `pageable.sort.ascending` (boolean) - `pageable.sort.property` (string) - `pageable.sort.ignoreCase` (boolean) - `numberOfElements` (integer) - `size` (integer) - `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 - `number` (integer) - `first` (boolean) - `last` (boolean) - `empty` (boolean)