- URL:
- https://[root]/portals/[portalID]/livingatlascatalog/checkForUpdates
- Methods:
GET
- Required Capability:
- Administrator
- Version Introduced:
- 11.3
Example usage
The following is a sample ArcGIS Enterprise request URL used to access the the check
resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/livingatlascatalog/checkForUpdates?f=pjson
Description
The check
resource returns a list of previously installed, as well as currently available for installation, ArcGIS Living Atlas content packages. For available packages, the response includes a new
property. When true
, a content update can be started immediately or scheduled for another time.
This resource also indicates if an update is already scheduled or is currently in progress. If the install
property is true
, the job
for the current update can be gathered from the Living Atlas Catalog resource and used to check the current status of the installation. If the install
property is true
, this indicates that an update has been scheduled for a later time, and the response will include the schedule
object that indicates when the update will package will be downloaded and installed.
Request parameters
Parameter | Details |
---|---|
| The response format. The default format is Values: |
JSON Response example
{
"installedPackages": [
{
"packageId": "504272abf2ab47798b50c428814ce3df",
"packageName": "1709750481052.lapk",
"sizeInBytes": 166724882,
"timeOfExport": 1709341200000,
"exporterVersion": "1",
"region": "all-region",
"itemsCount": 1861,
"sourceGroup": "1bf88d8c1d5c4b3da791c84f8e857bde",
"packageChecksum": "a48cf03556dc662e5b554d8e1499710ec7d10809da102cffa90390c7dc3785a5",
"release": "2024.1",
"created": 1709341200000,
"accountId": "0123456789ABCDEF",
"importDateTime": 1709341200000
}
],
"availablePackages": [
{
"packageId": "1897ca6b39284c4db098f439da5a92e0",
"packageName": "1712087139105.lapk",
"sizeInBytes": 138263224,
"timeOfExport": 1712087270519,
"exporterVersion": "1",
"region": "all-region",
"itemsCount": 1870,
"sourceGroup": "76652cf8194d4f249660379fd7c20672",
"packageChecksum": "f4ec541f1cc4e46d01148c8ebe2f999650765062aabc38d808e98e1527a7f75d",
"release": "2024.2",
"created": -1
}
],
"newContentAvailable": true,
"installInProgress": false,
"installScheduled": true,
"canConnectServer": true,
"scheduleInfo": {
"interval": 0,
"repeatCount": 0,
"timesTriggered": 0,
"startTime": 1712172786601,
"nextFireTime": 1712172786601,
"state": "NORMAL"
}
}