NAiOS IconNAiOS Logo
Volver al catálogo

Monday

monday

monday.com is a customizable work management platform for project planning, collaboration, and automation, supporting agile, sales, marketing, and more

Acciones
21
Triggers
0
Autenticación
OAuth gestionado
Información técnica: el detalle de parámetros, schemas y triggers de esta página está pensado para equipos de integración. Si solo necesitas saber si tu herramienta favorita está disponible, basta con ver la lista de acciones.

Acciones disponibles (21)

Cada acción es una operación que el agente puede ejecutar contra este conector. Haz clic en una acción para ver sus parámetros.

Add users to boardMONDAY_ADD_USERS_TO_BOARDAcción

Adds users to a monday.com board with a specified role.

Parámetros de entrada

  • kindstring

    Role for the added users on the board. Possible values: 'owner' or 'subscriber'.

  • board_idintegerObligatorio

    Unique identifier of an existing Monday.com board.

  • user_idsinteger[]Obligatorio

    List of unique identifiers for existing Monday.com users.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Archive boardMONDAY_ARCHIVE_BOARDAcción

Archives a specified, existing, and unarchived board in monday.com; archived boards can typically be restored later.

Parámetros de entrada

  • board_idintegerObligatorio

    Identifier of the board to be archived; it must exist and not already be archived.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Archive itemMONDAY_ARCHIVE_ITEMAcción

Archives an existing monday.com item, moving it from active board views to the archive where it can be potentially restored.

Parámetros de entrada

  • item_idintegerObligatorio

    Unique identifier of the Monday.com item to archive.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Change simple column valueMONDAY_CHANGE_SIMPLE_COLUMN_VALUEAcción

Changes a specific column's value for a monday.com item using a simple string, suitable for text, status, or dropdown columns; can create new labels if `create labels if missing` is true for status/dropdown columns.

Parámetros de entrada

  • valuestringObligatorio

    New string value. Format depends on column type (e.g., label name for Status/Dropdown, text for Text columns).

  • item_idintegerObligatorio

    The unique identifier of the item for which the column value will be updated.

  • board_idintegerObligatorio

    The unique identifier of the board where the item and column are located.

  • column_idstringObligatorio

    Identifier of the column to change; typically a Text, Status, or Dropdown column.

  • create_labels_if_missingboolean

    For Status/Dropdown columns: if true and `value` (as a label) doesn't exist, a new label with this value will be created.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create a Monday boardMONDAY_CREATE_BOARDAcción

Creates a monday.com board; `template id` if used must be accessible, and `folder id` must be in `workspace id` if both are provided.

Parámetros de entrada

  • folder_idinteger

    ID of the folder for the board. If `workspace_id` is absent, the board uses this folder's containing workspace. If `workspace_id` is present, this folder must be within the specified workspace.

  • board_kindstringObligatorio

    The kind of board to create, determining its visibility and access. Allowed values: 'public', 'private', 'share'.

  • board_namestringObligatorio

    The name for the new board.

  • descriptionstring

    Description for the new board.

  • template_idinteger

    ID of an accessible template to use for the new board.

  • workspace_idinteger

    ID of the workspace for the board. If `folder_id` is not also given, this defaults to the user's main workspace. If `folder_id` is given, this workspace must contain that folder.

  • board_owner_idsinteger[]

    User IDs to be assigned as owners of the board.

  • board_subscriber_idsinteger[]

    User IDs to be subscribed to the board.

  • board_subscriber_teams_idsinteger[]

    Team IDs to be subscribed to the board.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create columnMONDAY_CREATE_COLUMNAcción

Creates a new column with a specified type and title on a monday.com board.

Parámetros de entrada

  • titlestringObligatorio

    Title for the new column.

  • board_idintegerObligatorio

    Unique identifier of the board for the new column.

  • defaultsstring

    JSON string with default values or settings, often for 'status' or 'dropdown' types to define labels. Example: '''{"labels": ["To Do", "In Progress", "Done"]}'''

  • column_typestringObligatorio

    Type of the column.

  • descriptionstring

    Description for the new column.

  • after_column_idstring

    ID of an existing column after which the new column will be inserted.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create groupMONDAY_CREATE_GROUPAcción

Creates a new group with the given `group name` on an existing monday.com board, identified by its `board id`.

Parámetros de entrada

  • board_idintegerObligatorio

    The unique identifier of the Monday.com board where the new group will be created.

  • group_namestringObligatorio

    The desired name for the new group to be created on the board.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Create itemMONDAY_CREATE_ITEMAcción

Creates a new item on a monday.com board, optionally assigning it to a group and setting column values.

Parámetros de entrada

  • board_idintegerObligatorio

    The board's unique identifier.

  • group_idstring

    Optional group ID where the item will be created.

  • item_namestringObligatorio

    Name of the new item.

  • column_valuesstring

    JSON string representing column values. e.g. '{"date":"2023-12-01"}'

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete columnMONDAY_DELETE_COLUMNAcción

Deletes a specified column from a monday.com board; this action is destructive and cannot be undone via the api.

Parámetros de entrada

  • board_idintegerObligatorio

    The unique identifier of the board from which the column will be deleted.

  • column_idstringObligatorio

    The unique identifier of the column to be deleted from the specified board.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete groupMONDAY_DELETE_GROUPAcción

Permanently deletes an existing group (and its items) from an existing board in monday.com.

Parámetros de entrada

  • board_idintegerObligatorio

    Unique identifier of the board containing the group.

  • group_idstringObligatorio

    Unique identifier of the group to delete.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Delete itemMONDAY_DELETE_ITEMAcción

Permanently deletes an existing monday.com item; this action is irreversible via the api.

Parámetros de entrada

  • item_idintegerObligatorio

    The unique identifier of the Monday.com item to be deleted.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Duplicate itemMONDAY_DUPLICATE_ITEMAcción

Duplicates an item on a monday.com board, optionally including its updates.

Parámetros de entrada

  • item_idintegerObligatorio

    The unique identifier of the item to be duplicated. This item must exist on the specified `board_id`.

  • board_idintegerObligatorio

    The unique identifier of the board containing the item to be duplicated. This board must exist.

  • with_updatesboolean

    If true, item updates (e.g., comments, replies) are duplicated with the item; if false, the new item is created without any updates.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Get group detailsMONDAY_GET_GROUP_DETAILSAcción

Retrieves details (id, title, color, archived/deleted status) for a specific group on an accessible monday.com board.

Parámetros de entrada

  • board_idintegerObligatorio

    Identifier of the board containing the group.

  • group_idstringObligatorio

    Identifier of the group within the board; can be a descriptive string (e.g., 'topics', 'group_title') or a system-generated ID.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List board itemsMONDAY_LIST_BOARD_ITEMSAcción

Retrieves id, name, and state for all items on a specified monday.com board.

Parámetros de entrada

  • board_idintegerObligatorio

    The unique identifier of the Monday.com board from which to retrieve items.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List Monday boardsMONDAY_LIST_BOARDSAcción

Retrieves a list of boards from a monday.com account, supporting pagination and filtering by state.

Parámetros de entrada

  • pageinteger

    Page number for pagination.

  • limitinteger

    Maximum number of boards to retrieve per page.

  • statestring

    Filters boards by their state. Valid states: 'active', 'archived', 'deleted', or 'all'.

Parámetros de salida

  • dataobjectObligatorio

    Raw JSON response from the Monday.com GraphQL API. Contains a 'data' key with a list of 'boards' (each including 'id', 'name', 'state', 'board_kind', 'description'), and possibly an 'errors' key.

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List columnsMONDAY_LIST_COLUMNSAcción

Lists all columns and their properties for a specified monday.com `board id`; the board must exist.

Parámetros de entrada

  • board_idintegerObligatorio

    The unique identifier of the board from which to retrieve the columns.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List itemsMONDAY_LIST_ITEMSAcción

Retrieves specified subitems from monday.com using their ids, returning the raw json response.

Parámetros de entrada

  • item_idsinteger[]Obligatorio

    Subitem IDs to retrieve.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

List usersMONDAY_LIST_USERSAcción

Retrieves a list of users from monday.com; an empty user list in the response 'data' field does not signify action failure.

Parámetros de entrada

  • pageinteger

    Page number for results; starts at 1.

  • limitinteger

    Maximum number of users to return per page.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Move item to boardMONDAY_MOVE_ITEM_TO_BOARDAcción

Moves a monday.com item to a specified board and group; requires the item, target board, and target group to exist.

Parámetros de entrada

  • item_idintegerObligatorio

    The unique identifier of the item to be moved.

  • board_idintegerObligatorio

    The unique identifier of the target board to which the item will be moved.

  • group_idstringObligatorio

    The unique identifier of the target group on the destination board where the item will be placed.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Move item to groupMONDAY_MOVE_ITEM_TO_GROUPAcción

Moves an item to a different group on the same monday.com board; the item and group must exist.

Parámetros de entrada

  • item_idintegerObligatorio

    The unique identifier of the item to be moved.

  • group_idstringObligatorio

    The unique identifier of the target group where the item will be moved.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not

Update boardMONDAY_UPDATE_BOARDAcción

Updates a specified attribute of an existing board on monday.com.

Parámetros de entrada

  • board_idintegerObligatorio

    The unique identifier of the board to be updated.

  • new_valuestringObligatorio

    The new value to assign to the specified board attribute.

  • board_attributestringObligatorio

    The specific attribute of the board to update. This should be an enum value as defined by Monday.com's API and should not be enclosed in quotes in the final GraphQL mutation. Common updatable attributes include 'description' and 'communication'.

Parámetros de salida

  • dataobjectObligatorio

    Data from the action execution

  • errorstring

    Error if any occurred during the execution of the action

  • successfulbooleanObligatorio

    Whether or not the action execution was successful or not