- URL:
- https://[root]/portals/[portalID]/livingatlascatalog
- Methods:
GET
- Operations:
- Cancel Scheduled Download and Install Package, Download and Install Package
- Child Resources:
- Check for Updates, Export Package Directory
- Required Capability:
- Administrator
- Version Introduced:
- 11.3
Example usage
The following is a sample ArcGIS Enterprise request URL used to access the livingatlascatalog
resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/livingatlascatalog?f=pjson
Description
The livingatlascatalog
resource returns a list of the in progress, completed, or failed jobs that have been performed to update ArcGIS Living Atlas content. This resource also provides access to a number of resources and operations that can be used to manage ArcGIS Living Atlas content updates for an organization.
Request parameters
Parameter | Details |
---|---|
| The response format. The default format is Values: |
JSON Response example
The job
property returned below can be used to check the status for in progress jobs, or view full job details for those with a completed status, by making a request of the following form (where <job
is replaced with the job
value from the livingatlascatalog
JSON response):
https://machine.domain.com/webadaptor/sharing/rest/portals/<portalID>/jobs/<jobId>
If an update job has failed, reattempting the update using the same package will update the import
and modified
properties, and the day the update job was first attempted will be used as the value for the created
property. If an update job does fail, you can investigate the failure using the logs in the Portal Administration API.
{
"importedPackageInfos": [
{
"accountId": "0123456789ABCDEF",
"packageId": "bf9282e3-b491-4547-a04d-9663973b54ag",
"jobId": "99567f289fa04e4e95820bbacf3515c9",
"packageItemId": "14b942f1df784496b6ae2ab2bf9f2395",
"importDateTime": 1704934401913,
"status": "SCHEDULED",
"created": 1704934386896,
"modified": 1704985620127
},
{
"accountId": "0123456789ABCDEF",
"packageId": "bf9282e3-b491-4547-a04d-9663973b54af",
"jobId": "ef15b6652af34646ae91d5189baadeb4",
"packageItemId": "14b942f1df784496b6ae2ab2bf9f2395",
"importDateTime": 1704927659889,
"status": "COMPLETED",
"created": 1704927636776,
"modified": 1704985620135
},
{
"accountId": "0123456789ABCDEF",
"packageId": "bf9282e3-b491-4547-a04d-9663973b54ae",
"scheduleId": "5fc81c3cab4f4c3086256c464852a7d5",
"jobId": "9fe6b0e99b17437ab84bc44caf0213a1",
"packageItemId": "14b942f1df784496b6ae2ab2bf9f2395",
"importDateTime": 1704968350482,
"status": "COMPLETED",
"created": 1704898658950,
"modified": 1704985620140
}
]
}