- URL:
- https://[root]/content/users/[userName]/moveItems
- Methods:
- POST
Example usage
URL for Move Items
https://www.arcgis.com/sharing/rest/content/users/jsmith/moveItems
items=93b54c8930ae46d9a00a7820cb3ebbd1,bb8e3d443ab44878ab8315b00b0612ca
folder=1a9ad803da604628b08c968ce602a231Description
Moves a batch of items from their current folder to the specified target folder.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | For a complete listing, see Common parameters. | 
| 
 | A comma-separated list of items to be moved. | 
| 
 | The destination folder for the items. If the items are to be moved to the root folder, specify the value as "/" (forward slash). | 
Response properties
| Property | Details | 
|---|---|
| 
 | An array of JSON objects, one for each item requested. Each object is made up of the  | 
JSON Response syntax
{
  "results": [
    {
      "itemId": "<item  id>",
      "success": true | false,
      "error": {
        "code": code,
        "message": "<error message>"
      }
    }
  ]
}JSON Response example
{
  "results": [
    {
      "itemId": "93b54c8930ae46d9a00a7820cb3ebbd1",
      "success": true,
    },
    {
      "itemId": "bb8e3d443ab44878ab8315b00b0612ca",
      "success": false,
      "error": {
        "code": 500,
        "message": "Item already exists in target folder"
      }
    }
  ]
}