Item

URL:
https://<root>/uploads/<uploadID>
Methods:
GET
Required Capability:
Access allowed with any authorized privilege
Version Introduced:
10.1

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.

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 uploaded item resource:

Use dark colors for code blocksCopy
1
https://machine.domain.com/webadaptor/admin/uploads/if4582d33-f10a-41fe-85bc-cf2e2880c46e?f=pjson

JSON Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "itemID": "<ID>",
  "itemName": "<name>",
  "description": "<description>",
  "pathOnServer": "<path_on_server>",
  "date": "<date_of_upload>",
  "committed": <true|false>
}

JSON Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
{
  "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
}

Your browser is no longer supported. Please upgrade your browser for the best experience. See our browser deprecation post for more details.