patch_workspaces__wid__members__id_
Modify member permissions and access levels in workspaces. Specify roles, limited access, and folders for precise control over workspace management in GoLogin MCP.
Instructions
Update member permissions
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folders | No | Folders that the member will have access to. Need to specify only if limitedAccess is true. | |
| id | Yes | ||
| limitedAccess | Yes | If true, the member will have access only to a particular folder. | |
| role | Yes | Role of the member. | |
| wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"folders": {
"description": "Folders that the member will have access to. Need to specify only if limitedAccess is true.",
"items": {
"properties": {
"name": {
"type": "string"
},
"role": {
"required": [],
"type": "object"
}
},
"required": [
"name",
"role"
],
"type": "object"
},
"type": "array"
},
"id": {
"type": "string"
},
"limitedAccess": {
"description": "If true, the member will have access only to a particular folder.",
"type": "boolean"
},
"role": {
"description": "Role of the member.",
"enum": [
"owner",
"admin",
"editor",
"guest"
],
"type": "string"
},
"wid": {
"type": "string"
}
},
"required": [
"wid",
"id",
"limitedAccess",
"role"
],
"type": "object"
}