Power BI Connector for Monday

Build 25.0.9539

Tags

Retrieves a collection of tags used to categorize and filter items across boards.

Table-Specific Information

SELECT

The connector uses the Monday API to process some of the filters. The connector processes other filters client-side within the connector.

  • Id supports the '=','IN' comparison operators.
  • IsPrivate supports the '=' comparison operator.
  • BoardId supports the '=','IN' comparison operators.

For example, the following queries are processed server-side:

  SELECT * FROM Tags WHERE IsPrivate = true
  SELECT * FROM Tags WHERE Id = '13327214'
  SELECT * FROM Tags WHERE Id IN ('13327214', '13327217')

INSERT

The following columns can be used to create a new record:

Name, BoardId


INSERT INTO Tags (Name) VALUES ('TestTagName')

Columns

Name Type ReadOnly References Description
Id [KEY] String True

The unique identifier for the tag, used to reference and distinguish it across the system.

Color String True

The color associated with the tag, which may be used to visually categorize or highlight the tag in the user interface.

Name String True

The name of the tag, typically used to describe or categorize items, and displayed in the user interface.

IsPrivate Bool True

Indicates whether the tag is private (visible only to specific users or groups) or public (accessible to everyone in the system).

BoardId String True

The identifier for a private board where the tag is created or filtered, relevant only for private boards, and not required for public boards.

Copyright (c) 2026 CData Software, Inc. - All rights reserved.
Build 25.0.9539