Tags
Retrieves a collection of tags used to categorize and filter items across boards.
Table-Specific Information
SELECT
The add-in uses the Monday API to process some of the filters. The add-in processes other filters client-side within the add-in.
- Id supports the '=','IN' comparison operators.
- IsPrivate supports the '=' comparison operator.
SELECT * FROM Tags WHERE IsPrivate = true
SELECT * FROM Tags WHERE Id = '13327214'
SELECT * FROM Tags WHERE Id IN ('13327214', '13327217')
INSERT
The following inputs can be used in INSERT statements:
Name, BoardId
INSERT INTO Tags (Name) VALUES ('TestTagName')
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | False |
The unique identifier for the tag, used to reference and distinguish it across the system. | |
| Color | String | False |
The color associated with the tag, which may be used to visually categorize or highlight the tag in the user interface. | |
| Name | String | False |
The name of the tag, typically used to describe or categorize items, and displayed in the user interface. | |
| IsPrivate | Bool | False |
Indicates whether the tag is private (visible only to specific users or groups) or public (accessible to everyone in the system). | |
| BoardId | String | False |
The identifier for a private board where the tag is created or filtered, relevant only for private boards, and not required for public boards. |