delete_workspaces__wid__profiles
Remove multiple browser profiles from a specific workspace on GoLogin MCP. Input the workspace ID and profile list to execute the deletion.
Instructions
Delete multiple profiles in workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
profiles | Yes | ||
wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"profiles": {
"items": {
"type": "string"
},
"type": "array"
},
"wid": {
"type": "string"
}
},
"required": [
"wid",
"profiles"
],
"type": "object"
}