Power BI Connector for Monday

Build 24.0.9175

BoardTeams

Fetches a list of team subscribers associated with a specific board.

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.

  • BoardId supports the '=' comparison operator.
For example, the following queries are processed server side:
SELECT * FROM BoardTeams WHERE BoardId='5557271485'

INSERT

The following inputs can be used in INSERT statements:

Id, BoardId, Kind

INSERT INTO BoardTeams (Id,BoardId,Kind) VALUES ('51688059','5546871560','subscriber')

DELETE

You can delete entries by specifying the Id and BoardId.

DELETE FROM BoardTeams WHERE Id='51688059' AND BoardId='5546871560'

Columns

Name Type ReadOnly References Description
Id [KEY] String False

Teams.Id

A unique identifier for each board team entry, ensuring distinct records in the table.

BoardId [KEY] String False

Boards.Id

Represents the unique identifier of the board associated with the team, linking the team to its respective board.

Kind String False

Specifies the role of the team within the board, such as 'subscriber' or 'owner'. Note that all owners are implicitly subscribers. Use this column to differentiate between owners and non-owner subscribers.

The allowed values are owner, subscriber.

Copyright (c) 2025 CData Software, Inc. - All rights reserved.
Build 24.0.9175