- URL:
- https://[root]/content/users/[userName]/items/[itemID]/deleteProxies
- Methods:
POST
Example Usage
URL for Delete Proxies
https://www.arcgis.com/sharing/rest/content/users/jsmith/items/266800bbb6814b13be966c1c88a59c4c/deleteProxies
Description
The delete proxies operation (POST only) removes ArcGIS Online hosted proxies set on an item. The operation can only be made by the item owner and the organization administrator.
Request Parameters
Parameter | Details |
---|---|
| For a complete listing, see Common parameters. |
| A list of proxy IDs separated by comma. Example: |
Response Properties
Property | Details |
---|---|
| An array of JSON objects, one for each proxy requested. Each object consists of the |
JSON Response Syntax
{
"results": [
{
"proxyId": "<proxyID1>",
"success": true | false,
"error": {
"code": code,
"message": "<error message>"
}
},
{
"proxyId": "<proxyID2>",
"success": true | false
}
]
}
JSON Response Example
{
"results": [
{
"proxyId": "23NxxdEqioStHmDl",
"success": false,
"error": {
"code": 400,
"message": "App proxy Id '23NxxdEqioStHmDl' not found"
}
},
{
"proxyId": "SSZ4HVrY1WYbProl",
"success": true
}
]
}