Workspaces

Update workspace

patch
https://api.typeform.com/workspaces/{workspace_id}

Update a workspace.

Request

Path Parameters

workspace_id
string, required

Unique ID for the workspace.

Request Body

op
string
Valid values:replaceaddremove

The operation type

path
string
Valid values:/name/members

What element to apply the operation on

value

Example

[
  {
    "op": "replace",
    "path": "/name",
    "value": "marketing workspace"
  },
  {
    "op": "add",
    "path": "/members",
    "value": {
      "email": "test@test.com",
      "role": "owner"
    }
  },
  {
    "op": "remove",
    "path": "/members",
    "value": {
      "email": "test@test.com"
    }
  }
]

Response

Status

204 No content