Skip To Content
ArcGIS Developer
Dashboard

Item

Description

The individual item resource represents an item that has been uploaded to the server. Various workflows upload items and then process them on the server. For example, when publishing a GIS service from ArcGIS Pro or ArcGIS Server Manager, the application first uploads the service definition (.sd) to the server and then invokes the publishing geoprocessing tool to publish the service.

Each uploaded item is identified by a unique name (itemID). The pathOnServer property locates the specific item in the ArcGIS Server system directory. The committed parameter is set to true once the upload of individual parts is complete.

Note:

If the uploaded item is not made up of any parts, the parts list is empty.

Request parameters

ParameterDetails
f

The response format. The default response format is html.

Values: html | json| pjson

Example usage

The following is a sample request URL used to access an individual item resource:

https://machine.domain.com/webadaptor/admin/uploads/if4582d33-f10a-41fe-85bc-cf2e2880c46e?f=json

JSON Response syntax


{
  "itemID": "<ID>",
  "itemName": "<name>",
  "description": "<description>",
  "pathOnServer": "<path_on_server>",
  "date": "<date_of_upload>",  
  "committed": <true|false>
}

JSON Response example


{
  "itemID": "if4582d33-f10a-41fe-85bc-cf2e2880c46e",
  "itemName": "JavaDeleteFeatures.sd",
  "description": null,
  "pathOnServer": "c:\\arcgisserver\\directories\\arcgissystem\\arcgisuploads\\if4582d33-f10a-41fe-85bc-cf2e2880c46e",
  "date": "Mon Jun 13 12:59:59 PDT 2011",  
  "committed": true
}