patch_workspaces__wid__rename
Rename a workspace in GoLogin by specifying its unique ID and a new name, enabling quick updates to browser profile management.
Instructions
Rename workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | New name of the workspace. | |
wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "New name of the workspace.",
"type": "string"
},
"wid": {
"type": "string"
}
},
"required": [
"wid",
"name"
],
"type": "object"
}