move-browser
Transfer browser profiles to specified groups by providing group ID and browser IDs. Simplify profile management and organization in AdsPower LocalAPI.
Instructions
Move browsers to a group
Input Schema
Name | Required | Description | Default |
---|---|---|---|
groupId | Yes | The target group id, must be a numeric string (e.g., "123"). You can use the get-group-list tool to get the group list | |
userIds | Yes | The browser ids to move |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"groupId": {
"description": "The target group id, must be a numeric string (e.g., \"123\"). You can use the get-group-list tool to get the group list",
"pattern": "^\\d+$",
"type": "string"
},
"userIds": {
"description": "The browser ids to move",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"groupId",
"userIds"
],
"type": "object"
}