get_workspaces__wid__profiles
Retrieve all profiles within a specific workspace using customizable search, sorting, and filtering options to manage and organize browser profiles effectively.
Instructions
Get all profiles in workspace
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| folder | No | ||
| folderId | No | ||
| isAndroidCloud | No | ||
| offset | No | ||
| page | No | ||
| search | No | ||
| sortField | No | ||
| sortOrder | No | ||
| tag | No | ||
| wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"folder": {
"type": "string"
},
"folderId": {
"type": "string"
},
"isAndroidCloud": {
"type": "string"
},
"offset": {
"type": "number"
},
"page": {
"type": "number"
},
"search": {
"type": "string"
},
"sortField": {
"enum": [
"lastActivity",
"proxyType",
"updatedAt",
"createdAt",
"sharedEmails",
"name",
"os",
"order"
],
"type": "string"
},
"sortOrder": {
"enum": [
"ascend",
"descend"
],
"type": "string"
},
"tag": {
"type": "string"
},
"wid": {
"type": "string"
}
},
"required": [
"wid"
],
"type": "object"
}