- URL:
- https://[root]/portals/[portalID]/collaborations/[collaborationID]/workspaces/[workspaceID]/syncStatus
- Methods:
- GET
- Child Resources:
- Sync Status Details
- Version Introduced:
- 10.6
Example usage
The following is a sample ArcGIS Online request URL used to access the sync resource:
https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/collaborations/083b1dc8f4f749a38ff645581c454b49/workspaces/79d0e8f291654d2ea8b498a4e9a131fc/syncStatus?f=pjsonThe following is a sample ArcGIS Enterprise request URL used to access the sync resource:
https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/collaborations/083b1dc8f4f749a38ff645581c454b49/workspaces/79d0e8f291654d2ea8b498a4e9a131fc/syncStatus?f=pjsonDescription
The sync resource provides a status summary of each scheduled sync for items in a collaboration workspace.
Request parameters
| Parameter | Details | 
|---|---|
| 
 | The response format. The default response is  Values:  | 
Response properties
| Property | Details | 
|---|---|
| 
 | Shows the current status of a scheduled sync. Values:  | 
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"
    }
  ]
}