DeleteAttachment
Removes an attachment from a SharePoint list item. Useful for managing file storage and keeping lists clutter-free.
Input
| Name | Type | Required | Description |
| ListTitle | String | True | The title of the SharePoint list containing the item from which the attachment will be deleted. Helps identify the target list. |
| ItemId | String | True | The unique identifier of the list item associated with the attachment. Ensures the correct item is targeted for deletion. |
| FileName | String | True | The name of the attachment to be deleted. Helps specify which file should be removed from the list item. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the attachment deletion operation was successful. Returns 'true' for success and 'false' for failure. |