Skip to content

Tile Service Jobs Summary (Feature Service)

URL:
https://<adminservicecatalog-url>/services/<serviceName>/VectorTileServer/jobs
Methods:
GET
Version Introduced:
ArcGIS Online April 2021

Description

The tile service job summary (jobs ) resource represents a summary of all jobs associated with a vector tile service. Each job contains a jobid that corresponds to the specific jobid run and redirects you to the Job Statistics page.

Request parameters

ParameterDetails
f

The response format. The default response format is json .

Values: html | json

tokenAn access token that identifies the authenticated user and controls access to restricted resources and operations.

Example usage

Use dark colors for code blocksCopy
1
https://services.myserver.com/arcgis/rest/admin/services/serviceName/VectorTileServer/jobs?f=html

JSON 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
28
29
30
{
  "total": <jobs>,
  "jobs": [
    {
      "id": "jobid",
      "status": "<Submitted | Done | Canceled | Failed>"
      "type": "<UpdateTiles | DeleteTiles>"
      "submitTime": "<time>"
      "startTime": "<time>"
      "endTime": "<time>"
      "lodInfos": {
        "levelID": <levelID>
        "tileCount": <tileCount>
        "expectedTileCount": <expectedTileCount>
        "tilesSize": <tilesSize>
        "status": "<Submitted | Done | Canceled | Failed>"
      }
      "extent": {
        "xmin": <xmin>
        "ymin": <ymin>
        "xmax": <xmax>
        "ymax": <ymax>
        "spatialReference": {
          "wkid": "<wkid>"
          "latestWkid": "<lastestWkid>"
        }
      }
    }
  ]
}

JSON Response examples

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
{
  "total": 1,
  "jobs": [
    {
      "id": "2e4e3ae6-r690-f374-bc88-26c61w3e9afd",
      "status": "DONE",
      "type": "UpdateTiles",
      "submitTime": 1614283897037,
      "startTime": 1614283908127,
      "endTime": 1614283951257,
      "extent": {
        "xmin": -20037508.3428,
        "ymin": -20037508.3428,
        "xmax": 20037508.3428,
        "ymax": 20037508.3428,
        "spatialReference": {
          "wkid": 102100,
          "latestWkid": 3857
        }
      }
    }
  ]
}
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
{
  "jobId": "2els93e6-50s0-42e4-bs98-26029fhe9afd",
  "type": "CACHECOOKER",
  "jobStatus": "CANCELED",
  "submitter": "User1",
  "percentComplete": 100,
  "message": "",
  "startTime": 1614283908127,
  "submitTime": 1614283897037,
  "lastTime": 1614283951257,
  "extent": {
    "xmin": -20037508.3428,
    "ymin": -20037508.3428,
    "xmax": 20037508.3428,
    "ymax": 20037508.3428,
    "spatialReference": {
      "wkid": 102100,
      "latestWkid": 3857
    }
  },
  "numTasks": 1,
  "numDoneTasks": 1,
  "numErrorTasks": 0,
  "numCanceledTasks": 0,
  "numSubmittedTasks": 0,
  "numProcessingTasks": 0,
  "estimatedNumTiles": 0,
  "numTiles": 0,
  "estimatedTilesSize": 0,
  "tilesSize": 0,
  "averageTaskTime": 23.781,
  "totalTaskTime": 23.781
}

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