BoardUsers
Retrieves a list of user subscribers for a specific board.
Table-Specific Information
SELECT
The component uses the Monday API to process some of the filters. The component processes other filters client-side within the component.
- BoardId supports the '=','IN' comparison operators.
- Kind supports the '=','IN' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM BoardUsers WHERE BoardId = 'Val1'
SELECT * FROM BoardUsers WHERE Kind = 'owner'
INSERT
The following columns can be used to create a new record:
Id, BoardId, Kind
DELETE
You can delete entries by specifying the following columns:
Id, BoardId
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
Users.Id |
The unique identifier for the board owner, used to distinguish users associated with different boards. |
| BoardId [KEY] | String | True |
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 | True |
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. |