FRAMES | NO FRAMES Description | Parameters | Response | Example
URL:http://server:port/arcgis/admin/uploads/<itemID>
HTTP Method:GET
Parent Resource: Uploads
Child Resources: Item Parts
Supported Operations: Upload Part   Commit Item   Delete Item  

Description

This 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 for Desktop 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.

Parameters

Parameter Description
f The response format. The default response format is html.
Values: html | json

Response Format

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

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
}