post_workspaces__wid__members
Add members to a workspace by specifying their emails, roles, and access permissions using GoLogin MCP. Manage team collaboration and workspace configuration efficiently.
Instructions
Add member to workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
emails | Yes | ||
folders | No | ||
limitedAccess | Yes | ||
role | Yes | ||
wid | Yes | ||
workspaceName | No |
Input Schema (JSON Schema)
{
"properties": {
"emails": {
"items": {
"type": "string"
},
"type": "array"
},
"folders": {
"items": {
"properties": {
"name": {
"type": "string"
},
"role": {
"required": [],
"type": "object"
}
},
"required": [
"name",
"role"
],
"type": "object"
},
"type": "array"
},
"limitedAccess": {
"type": "boolean"
},
"role": {
"enum": [
"owner",
"admin",
"editor",
"guest"
],
"type": "string"
},
"wid": {
"type": "string"
},
"workspaceName": {
"type": "string"
}
},
"required": [
"wid",
"emails",
"limitedAccess",
"role"
],
"type": "object"
}