/info/iteminfo.xml: Item Info File

URL:
https://[root]/content/items/[itemID]/info/iteminfo.xml
Methods:
GET

Example usage

URL for Item Info Card (does not show optional folderName)

Use dark colors for code blocksCopy
1
https://www.arcgis.com/sharing/rest/content/items/10ba62fe50864339a8a3e0f18ca85506/info/iteminfo.xml

Description

An Item Info File, such as the item card, thumbnail, documentation, and so on, can be packaged with the uploaded file.

The content type of the response is derived from the info file's MIME type. If the MIME type can't be derived, the response content type will be set to application/octet-stream. This resource can be accessed by clicking the Item Card (XML) link on the User Item information page.

XML Response syntax

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ESRI_ItemInformation Culture="languagecode_countrycode" >
  <title>item title</title>
  <thumbnail>file name</thumbnail>
  <type>type</type>
<typekeywords>
  <typekeyword>keyword1</typekeyword>
  <typekeyword>keyword2</typekeyword>
  <typekeyword>keyword3</typekeyword>
  <typekeyword>keyword4</typekeyword>
  </typekeywords>
<tags>
  <tag>tag1</tag>
  <tag>tag2</tag>
  <tag>tag3</tag>
  </tags>
  <snippet>summary</snippet>
<extent>
  <xmin>minX</xmin>
  <ymin>minY</ymin>
  <xmax>maxX</xmax>
  <ymax>maxY</ymax>
  </extent>
  <description>description</description>
  <accessinformation>credits</accessinformation>
  <licenseinfo>access and use constraints</licenseinfo>
  </ESRI_ItemInformation>

XML Response example

Use dark colors for code blocksCopy
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8" standalone="no" ?>
<ESRI_ItemInformation Culture="en_us" >
  <title>Highland Earthquake</title>
  <thumbnail>thumbnail/earthquake.jpg</thumbnail>
  <type>Web Map</type>
<typekeywords>
  <typekeyword>Web Map</typekeyword>
  <typekeyword>Map</typekeyword>
  <typekeyword>Online Map</typekeyword>
  <typekeyword>ArcGIS Online</typekeyword>
  </typekeywords>
<tags>
  <tag>Highland</tag>
  <tag>Southern California</tag>
  <tag>earthquake</tag>
  <tag>earthquakes</tag>
  <tag>quake</tag>
  <tag>2010</tag>
  </tags>
  <snippet>This web map shows recent earthquakes around Southern California. The web map features
a live map service from the USGS NHSS displayed over pre-earthquake imagery of the area.</snippet>
<extent>
  <xmin>-117.81</xmin>
  <ymin>34.39</ymin>
  <xmax>-115.36</xmax>
  <ymax>33.72</ymax>
  </extent>
  <description>This web map shows recent earthquakes in Southern California, specifically
the city of Highland.  The web map presents a live map service from the USGS displayed over pre-earthquake
imagery of the area.  The live map service shows recent earthquakes of 2.5+ magnitude along with other
types of natural disasters. The live map service is provided by U.S. Geological Survey (USGS) Natural
Hazards Support System (NHSS). The NHSS provides a comprehensive overview of current natural hazard events
and is published by the USGS Rocky Mountain Geographic Science Center (RMGSC) from various data sources.
Among the layers included in the live map service is recent earthquakes. The Earthquakes layer shows
global earthquakes with a magnitude greater than 2.5 that have occurred in the past seven days.
Smaller earthquakes are not shown. This feed from the USGS Earthquakes Hazards Program is retrieved by
NHSS every 10 minutes.</description>
  <accessinformation>Credits: Imagery Corporation</accessinformation>
  <licenseinfo><span>Please see: https://nhss.cr.usgs.gov/data.shtml</licenseinfo>
  </ESRI_ItemInformation>

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