BoardTeams
Fetches a list of team subscribers associated with a specific board.
Table-Specific Information
SELECT
The driver uses the Monday API to process some of the filters. The driver processes other filters client-side within the driver.
- BoardId supports the '=' comparison operator.
SELECT * FROM BoardTeams WHERE BoardId='5557271485'
INSERT
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.
The following inputs can be used in INSERT statements:
Id, BoardId, Kind
INSERT INTO BoardTeams (Id,BoardId,Kind) VALUES ('51688059','5546871560','subscriber')
DELETE
Note: API limitations may cause affected row counts to be reported inaccurately when attempting to delete relationships between entities that are not related.
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. |