From 8955c9e07a1b6f543354da699410af7e112a789d Mon Sep 17 00:00:00 2001 From: Lucio Seki Date: Wed, 19 May 2021 10:34:21 -0300 Subject: [PATCH] Update README.md with the new argument --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 118cd45..f3ef70c 100644 --- a/README.md +++ b/README.md @@ -24,9 +24,9 @@ monday.items.create_item(board_id='12345678', group_id='today', item_name='Do a **Available methods:** #### Items Resource (monday.items) -- `create_item(board_id, group_id, item_name, column_values=None)` - Create an item on a board in the given group with name item_name. +- `create_item(board_id, group_id, item_name, column_values=None, create_labels_if_missing=False)` - Create an item on a board in the given group with name item_name. -- `create_subitem(parent_item_id, subitem_name, column_values=None)` - Create a subitem underneath a given parent item. Monday API will return an error if the board you're trying to add to does not have a subitems column/at least one subitem created. +- `create_subitem(parent_item_id, subitem_name, column_values=None, create_labels_if_missing=False)` - Create a subitem underneath a given parent item. Monday API will return an error if the board you're trying to add to does not have a subitems column/at least one subitem created. - `fetch_items_by_column_value(board_id, column_id, value)` - Fetch items on a board by column value.