delete_workspaces__wid__members__id_
Remove a member from a specific workspace by providing workspace ID (wid) and member ID (id). Streamlines user management within GoLogin MCP server workflows.
Instructions
Remove member from workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
id | Yes | ||
wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"id": {
"type": "string"
},
"wid": {
"type": "string"
}
},
"required": [
"wid",
"id"
],
"type": "object"
}