FRAMES | NO FRAMES Description | Parameters | Response | Example
URL:http://server:port/arcgis/admin/services/[<folder>]/<serviceName.serviceType>/iteminfo
HTTP Method:GET
Parent Resource: Service  
Supported Operations: Edit Item Information   Upload Item Information File   Delete Item Information  

Description

The item information resource stores metadata about a service. Typically, this information is available to clients that want to index or harvest information about the service.

Item information is represented in JSON format defined by the schema described below. It can optionally contain thumbnail images associated with the service. The thumbnail images can be accessed with a URL by appending the path of the image to this item information URL.

Note:

Some of the properties in the item information are visible in ArcGIS Server Manager (and ArcGIS for Desktop) when you view the service's properties and click the Item Description page. These properties are listed in the following table:

Property in ManagerJSON property
Summary"summary"
Tags"tags"
Description"description"
Access and Use Constraints"licenseInfo"
Credits"accessInformation"

Parameters

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

Response Format

{
		"culture": "<culture>",
		"name": "<namegt;",
		"thumbnail": "<thumbnail folder>",
		"guid": "<guid>",
		"catalogpath": "<path>",
		"snippet": "<snippet>",
		"description": "<description>",
		"summary": "<summary>",
		"title": "<title>",
		"tags": "<tags>",
		"type": "<type>",
		"text": "<text>",
		"typekeywords": [
			"<keyword1>",
			"<keyword2>",...
		],
		"documentation": "<documentation>",
		"url": "<url>",
		"datalastmodifiedtime": "<time>",
		"extent": <extent>,
		"spatialreference": "<spatial reference>",
		"accessinformation": "<access information>",
		"licenseinfo": "<license information>"
}
			

Example

{
		"Culture": "en-US",
		"name": "usa",
		"thumbnail": "thumbnail/image.jpg",
		"guid": "FD09F5FF-4031-49D4-8BD3-B310728C8FF7",
		"catalogpath": "",
		"snippet": "",
		"description": "",
		"summary": "",
		"title": "usa.mxd",
		"tags": "",
		"type": "Service Definition",
		"Text": "",
		"typekeywords": [
			"Shapefile Feature Class",
			"ArcGIS",
			"Service Definition",
			".sd"
		],
		"documentation": "",
		"url": "",
		"datalastmodifiedtime": "",
		"extent": {
			"xmin": -178.217598362366,
			"ymin": 18.9247817993163,
			"xmax": -66.9692710360024,
			"ymax": 71.4071353542713
			},
		"spatialreference": "Unknown",
		"accessinformation": "",
		"licenseinfo": ""
}