# Retrieve tags using specified ID Fetch detailed information about a specific tag within the Property Management System (PMS) using its unique ID. Tags are essential for categorizing and organizing various system entities, such as properties, bookings, guests, accounts, and other records. This endpoint is useful for retrieving tag-specific data for reporting, auditing, and data management purposes. The response includes details about the tag, including its name and description. If the specified tag ID does not exist, a 404 Not Found error will be returned. In case of an unexpected system error, a 500 Internal Server Error will be triggered. Endpoint: GET /api/v3/tags/{id} Version: 3.0.9 Security: OAuth2 ## Path parameters: - `id` (integer, required) The unique ID of the tag ## Response 200 fields (application/json): - `id` (integer) The id of the tag - `name` (string) The name of the tag - `tagType` (object) The type of the tag - `tagType.id` (integer) The id of the tag type - `tagType.name` (string) The name of the tag type - `tagType.description` (string) The description of the tag type - `tagType.category` (string) The category of the tag type Enum: "ACTIVITIES", "BOOKING", "CRM_COMPANY", "CRM_CONTACT", "ISSUES", "GLOBAL", "PROPERTY_UNITS", "WORKSHEETS", "ROOM_STAY" - `sortOrder` (integer) The sort order of the tag