You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* Added "create board by workspace id"
* Update readme
* Added missing type hints
* Updated test
* More custom type hints
* Type hints for 'get_boards_query'
* Fixed tests
* Updated Readme and 'fetch_boards' method
Copy file name to clipboardExpand all lines: README.md
+10-1Lines changed: 10 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,14 +57,23 @@ monday.items.create_item(board_id='12345678', group_id='today', item_name='Do a
57
57
58
58
59
59
#### Boards Resource (monday.boards)
60
-
-`fetch_boards(**kwargs)` - Fetch boards associated with an account. Returns boards and their groups, tags, and columns. Accepts keyword arguments. See Monday API docs for a list of accepted keyword arguments.
60
+
-`fetch_boards(**kwargs)` - Fetch boards associated with an account. Returns boards and their groups, tags, and columns. Accepts keyword arguments:
61
+
-`limit` - The number of boards returned (*int*. Default is 25).
62
+
-`page` - The page number returned, should you implement pagination(*int*. Starts at 1).
63
+
-`ids` - A list of the unique board identifier(s) (*List[int]*).
64
+
-`board_kind` - The board's kind (*BoardKind*. public / private / share).
65
+
-`state` - The state of the board (*BoardState*. all / active / archived / deleted. Default is active).
66
+
-`order_by` - The order in which to retrieve your boards (*BoardsOrderBy*. created_at / used_at).
67
+
61
68
62
69
-`fetch_boards_by_id([board_ids])` - Since Monday does not allow querying boards by name, you can use `fetch_boards` to get a list of boards, and then `fetch_boards_by_id` to get more detailed info about the groups and columns on that board. Accepts a comma separated list of board ids.
63
70
64
71
-`fetch_columns_by_board_id([board_ids])` - Get all columns, as well as their ids, types, and settings. Accepts a comma separated list of board ids.
65
72
66
73
-`fetch_items_by_board_id([board_ids])` - Get all items on a board(s). Accepts a comma separated list of board ids.
67
74
75
+
-`create_board(board_name, board_kind, workspace_id)` - Create board with the given name and kind by (and optional) workspace id.
76
+
68
77
69
78
#### Users Resource (monday.users)
70
79
-`fetch_users(**kwargs)` - Fetch user information associated with an account. See Monday API docs for a list of accepted keyword arguments.
0 commit comments