Share

GET: Retrieves specific workspace by workspace id

Resource URL

GET /v3/workspaces/{workspaceId}

URL parameters

Parameter Description
workspaceId integer(required) The ID of the workspace whose details you want to retrieve.

Request example

Request Example URL

api/v3/workspaces/70

Example Request Data

Response (200 OK)

Response Example

{
  "__self__" : "/api/v3/workspaces/70",
  "urn" : "urn:adsk.plm:tenant.workspace:SWAGGER.70",
  "name" : "OnDemands Scripts Test",
  "description" : "",
  "systemName": "WS_CHANGE_ORDERS",
  "category" : {
    "name" : "Program Management",
    "icon" : "/images/home/npi_solution_24.png"
  },
  "type" : "/api/v3/workspace-types/6",
  "fields" : "/api/v3/workspaces/70/fields",
  "sections" : "/api/v3/workspaces/70/sections",
  "views" : "/api/v3/workspaces/70/views",
  "tableaus" : "/api/v3/workspaces/70/tableaus",
  "permissions" : [ "Read", "Create", "Delete", "Update" ],
  "scripts" : "/api/v3/workspaces/70/scripts",
  "deleted" : false,
  "displayOrder" : 1
}

Was this information helpful?