Skip To Content
ArcGIS Developer
Dashboard

Image Service Result

Description

The Image Service result resource represents a result parameter for an Image Service Job. It provides information about the result parameter such as its name, data type, and value. The value is the most important piece of information provided by this resource. Based on the data type of the parameter, the values provide different types of information. Given this fact, the value will have different structures based on the data type as defined below.

Request parameters

ParameterDetails
f

Description: The response format. The default response format is html.

Values: html | json

Example usage

https://myserver.mydomain.com/arcgis/rest/services/WorldImagery/ImageServer/exportTiles/jobs/j1fb60facc9194208929f90a7fd64fc9d/results/out_service_url?f=json

https://myserver.mydomain.com/arcgis/rest/services/WorldImagery/ImageServer/estimateExportTilesSize/jobs/jb96ae2b8b6b84f1cbd169ee130dac435/results/out_service_url?f=json

JSON Response syntax


            {"paramName" : "<paramName>","dataType" : "<dataType>","value" : <valueLiteralOrObject>}

JSON Response example (Export Tiles)

{
 "paramName": "out_service_url",
 "dataType": "GPString",
 "value": "https://myserver.mydomain.com/arcgis/rest/directories/arcgisoutput/WorldImagery_ImageServer/_agsLMapCacheL3F19"
}

JSON Response example (Estimate Export Tile Size)

{
    "paramName": "out_service_url",
    "dataType": "GPString",
    "value": {
        "totalSize": 6972190,
        "totalTilesToExport": 6952
    }
}