# 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 item
  • group_id (str): the id of the group to add the new item
  • item_name (str): the name of the item to be created
  • column_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.

Args:

  • board_id (int): the id of the board to add the new item
  • group_id (str): the id of the group to add the new item
  • item_name (str): the name of the item to be created
  • column_values (dict, optional): any additional custom columns added to your board
  • monday_api_token (str): the name of the Prefect Secret which stored your Monday API Token.
Returns:
  • int: the id of the item created



This documentation was auto-generated from commit ffa9a6c
on February 1, 2023 at 18:44 UTC