MoveItem
Moves an item, such as an email or calendar event, from one folder to another within the Exchange mailbox store. This is useful for organizing mailbox contents or implementing custom automation workflows.
Input
| Name | Type | Required | Description |
| ItemId | String | True | The unique identifier of the item (such as an email or calendar entry) that is to be moved. This value is required to locate the item in the mailbox. |
| ItemChangekey | String | True | The change key associated with the item, used to ensure concurrency and identify the specific version of the item to be moved. Required for consistent item state validation. |
| FolderDisplayName | String | True | The display name of the target folder where the item will be moved. This should match an existing folder name in the mailbox (such as Inbox, Archive, or a custom folder). |
Result Set Columns
| Name | Type | Description |
| ResponseClass | String | Indicates the overall outcome of the move operation. Common values include Success (operation completed), Warning (partial issues), or Error (operation failed). |
| ResponseCode | String | A machine-readable response code that provides additional detail about the outcome of the move operation. Useful for diagnosing issues programmatically. |
| MessageText | String | A descriptive message that explains the result of the move operation, especially in cases of warnings or errors. Intended for display in logs or user interfaces. |