MoveAttachmentOrDocument
Moves an attachment or document from one folder to another within SharePoint. Useful for reorganizing content and maintaining a structured document library.
Input
| Name | Type | Required | Description |
| List | String | True | The name of the SharePoint list or document library from which the document or attachment will be moved. |
| SourceFileURL | String | True | The relative URL of the source file, based on the site URL in the connection properties. Example formats: Root Directory file:/Shared Documents/filename.txt Sub-directory file:/Shared Documents/MyFolder/filename.txt If the connection property points to a site collection, the relative URL corresponds to a path within the base site. If it points to a specific site, the relative URL is relative to that site. |
| DestinationFolderURL | String | True | The relative URL of the destination folder where the document or attachment should be moved. Example formats: Root Directory:/Shared Documents/ Sub-directory:/Shared Documents/MyFolder/ As with SourceFileURL, the relative URL depends on whether the connection property is set to a site collection or a specific site. |
Result Set Columns
| Name | Type | Description |
| Success | Boolean | Indicates whether the operation was successful. Returns 'true' if the move was completed successfully, otherwise 'false'. |