Update Workspaces

This endpoint provides a partial update for a workspace.

Access requirements

The Authorization Bearer (Admin API Key authorizing the request) must have one of the following roles and scopes:

Admin API Key roles accepted

  • API_ALL_GRANTED
  • API_ADMIN
  • API_WORKSPACE_ADMIN

Admin API Key scopes accepted

  • GLOBAL
  • WORKSPACE

To learn more about Admin API Key roles and scopes, see API keys overview.


JSON Payload

[
    {
        "op": "replace",
        "path": "/name",
        "value": "newValue"
    },
    {
        "op": "replace",
        "path": "/requiresTitleAndComments",
        "value": false
    }
]
Language