- URL:https://[root]/portals/[portalID]/collaborations/[collaborationID]/workspaces/[workspaceID]/syncStatus
- Child Resources:Sync Status Details
- Version Introduced:10.6
Example usage
Below is a sample ArcGIS Online request URL used to access the SyncStatus resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/collaborations/083b1dc8f4f749a38ff645581c454b49/workspaces/79d0e8f291654d2ea8b498a4e9a131fc/syncStatus?f=pjsonBelow is a sample ArcGIS Enterprise request URL used to access the SyncStatus resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/collaborations/083b1dc8f4f749a38ff645581c454b49/workspaces/79d0e8f291654d2ea8b498a4e9a131fc/syncStatus?f=pjsonDescription
This resource provides a status summary of each scheduled sync for items in a collaboration workspace.
Request parameters
| Parameter | Details | 
|---|---|
| f | The response format. The default response is html. Values: html | json | pjson | 
Response properties
| Property | Details | 
|---|---|
| status | Shows the current status of a scheduled sync. Values: submitted | started | in_progress | failed | completed_with_failures | completed | unknown sync status | 
JSON Response example
{
  "status": [
    {
      "syncId": "93060123f753444f9e134b8df856c6eb",
      "syncExecType": "scheduled",
      "startTime": 1503591726151,
      "endTime": 1503591818390,
      "status": "completed",
      "summary": "Completed sync successfully"
    },
    {
      "syncId": "c30c9295a8664c8f8047a274a6a7abed",
      "syncExecType": "realtime",
      "startTime": 1503591721454,
      "endTime": 1503591732387,
      "status": "completed",
      "summary": "Completed sync successfully"
    }
  ]
}