# Monday Tasks
Tasks for interacting with monday.com
Note, to authenticate with the Monday API add a Prefect Secret called '"MONDAY_API_TOKEN"' that stores your Monday API Token.
# CreateItem
class
prefect.tasks.monday.monday.CreateItem
(board_id=None, group_id=None, item_name=None, column_values=None, **kwargs)[source]Task for creating items in a Monday board
Args:
board_id (int)
: the id of the board to add the new itemgroup_id (str)
: the id of the group to add the new itemitem_name (str)
: the name of the item to be createdcolumn_values (dict, optional)
: any additional custom columns added to your board**kwargs (dict, optional)
: additional keyword arguments to pass to the Task constructor
methods: |
---|
prefect.tasks.monday.monday.CreateItem.run (board_id=None, group_id=None, item_name=None, column_values=None, monday_api_token="MONDAY_API_TOKEN")[source] |
Task run method.
|
This documentation was auto-generated from commit bd9182e
on July 31, 2024 at 18:02 UTC