Actions26
- Board Actions
- Docs Actions
- Folder Actions
- Group Actions
- Item Actions
- Updates Actions
- Users Actions
Overview
This node operation deletes an item from a specified board in Monday.com. It is useful when you want to programmatically remove tasks, projects, or any other items tracked on a Monday.com board. For example, you might use this node to clean up completed tasks automatically or remove outdated entries based on certain workflow conditions.
Properties
| Name | Meaning |
|---|---|
| Board | The Monday.com board from which the item will be deleted. You select the board by name. |
| Item | The specific item within the selected board that you want to delete. |
Output
The output JSON contains two fields:
success: A boolean indicating whether the deletion was successful.itemId: The ID of the item that was requested to be deleted.
Example output:
{
"success": true,
"itemId": 123456789
}
No binary data is output by this operation.
Dependencies
- Requires an API key credential for Monday.com with permissions to delete items.
- The node uses Monday.com's API version (defaulting to "2023-10") to perform the deletion.
- No additional external services are required beyond Monday.com API access.
Troubleshooting
Common issues:
- Attempting to delete an item that does not exist or has already been deleted may result in failure.
- Insufficient permissions on the API key can cause authorization errors.
- Providing an invalid board or item ID will cause the operation to fail.
Error messages and resolutions:
"Item not found": Verify the item ID exists on the specified board."Unauthorized"or similar authentication errors: Check that the API key credential is valid and has the necessary scopes.- JSON parsing errors in other operations do not apply here since this operation only requires IDs.
Links and References
- Monday.com API Documentation
- Monday.com Items API (for details on deleting items)