Skip To Content
ArcGIS Developer
Dashboard

/[workspaceID]: Workspace

Example usage

Below is a sample ArcGIS Online request URL used to access an individual workspace resource:

https://org.arcgis.com/sharing/rest/portals/0123456789ABCDEF/collaborations/1169d622be9d49c58d53dcfc4cd85134/workspaces/ba18f61f703741599dc8d888984c0da1?f=pjson

Below is a sample ArcGIS Enterprise request URL used to access an individual workspace resource:

https://machine.domain.com/webadaptor/sharing/rest/portals/0123456789ABCDEF/collaborations/1169d622be9d49c58d53dcfc4cd85134/workspaces/ba18f61f703741599dc8d888984c0da1?f=pjson

Description

The workspace resource provides information about the collaboration workspace with a specified ID.

Request parameters

ParameterDetails
f

The response format. The default format is html.

Values: html | json | pjson

JSON Response example


{
  "id": "ba18f61f703741599dc8d888984c0da1",
  "name": "E109DevOnline2WaySync",
  "description": "E109DevOnline2WaySync",
  "collaborationId": "6eb9d44f520747468926620047e79919",
  "config": {
    "maxItemSizeInMB": 512,
    "maxReplicationPackageSizeInMB": 1024,
    "copyByRefIfCopyFail": true,
    "bidirectionalSyncCapable": true // New with ArcGIS Online's March 2021 release & ArcGIS Enterprise 10.9
  },
  "created": 1602454347620,
  "modified": 1602454347620,
  "lastSyncSuccess": -1,
  "bidirectionalSyncCapable": false,
  "participantGroupLinks": [
    {
      "portalId": "cd16dea4-9c99-4662-b337-9734843a65a9",
      "portalGroupId": "845cc726affd46a3a0431635f7861364",
      "portalGroupName": "E109DevOnline2WaySync",
      "config": {
        "enableRealtimeSync": true,
        "copyFeatureServiceData": true,
        "enableFeatureServiceBidirectionalSync": false
      },
      "accessMode": "sendAndReceive",
      "canSyncWorkspace": true,
      "isServiceProxyEnabled": false
    },
    {
      "portalId": "wTpiCNYUNGm0YDTX",
      "accessMode": "sendAndReceive",
      "config": {
        "copyFeatureServiceData": true,
        "enableFeatureServiceBidirectionalSync": true
      },
      "isServiceProxyEnabled": false
    }
  ],
  "participantsWithoutGroupLinks": []
}