Cmdlets for Monday

Build 25.0.9434

BoardUsers

Retrieves a list of user subscribers for a specific board.

Table-Specific Information

SELECT

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

  • BoardId supports the '=','IN' comparison operators.
  • Kind supports the '=' comparison operator.
For example, the following queries are processed server side:
SELECT * FROM BoardUsers WHERE BoardId = '5525287714'
SELECT * FROM BoardUsers WHERE Kind = 'owner'

INSERT

This table supports BATCH INSERT. The inputs (Id, BoardId, Kind) can be used in INSERT statements.

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

Note: API limitations may cause affected row counts or generated keys to be reported inaccurately when attempting to create relationships between entities that are already related.

DELETE

This table supports BATCH DELETE. You can delete entries by specifying the Id and BoardId.

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

Note: API limitations may cause affected row counts to be reported inaccurately when attempting to delete relationships between entities that are not related.

Columns

Name Type ReadOnly References Description
Id [KEY] String False

Users.Id

The unique identifier for the board owner, used to distinguish users associated with different boards.

BoardId [KEY] String False

Boards.Id

The unique identifier of the board to which the user is linked. This is used to associate users with specific boards.

Kind String False

Indicates the role of the user on the board. Valid roles are 'subscriber' or 'owner'. Owners are implicitly subscribers but can be differentiated using this column to filter non-owners.

The allowed values are owner, subscriber.

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