- URL:
- https://[root]/content/users/[userName]/moveItems
- Methods:
POST
Example usage
The following is a sample ArcGIS Online POST request for the move
operation:
POST /sharing/rest/content/users/jSmith/moveItems HTTP/1.1
Host: org.arcgis.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []
items=93b54c8930ae46d9a00a7820cb3ebbd1,bb8e3d443ab44878ab8315b00b0612ca&folder=1a9ad803da604628b08c968ce602a231&f=pjson
The following is a sample ArcGIS Enterprise POST request for the move
operation:
POST /<context>/sharing/rest/content/users/jSmith/moveItems HTTP/1.1
Host: organization.example.com
Content-Type: application/x-www-form-urlencoded
Content-Length: []
items=93b54c8930ae46d9a00a7820cb3ebbd1,bb8e3d443ab44878ab8315b00b0612ca&folder=1a9ad803da604628b08c968ce602a231&f=pjson
Description
The move
operation moves a batch of items from their current folder to the specified target folder.
Request parameters
Parameter | Details |
---|---|
| 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). |
| The response format. The default response format is Values: |
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"
}
}
]
}