post_workspaces__wid__profiles_transfer
Transfer browser profiles within a workspace to another user by specifying their email and instance IDs. Use this to reallocate or share profiles efficiently.
Instructions
Transfer profile
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceIds | Yes | Array of instance ids to transfer profiles to. | |
toEmail | Yes | Email of the recipient. | |
wid | Yes |
Input Schema (JSON Schema)
{
"properties": {
"instanceIds": {
"description": "Array of instance ids to transfer profiles to.",
"items": {
"type": "string"
},
"type": "array"
},
"toEmail": {
"description": "Email of the recipient.",
"type": "string"
},
"wid": {
"type": "string"
}
},
"required": [
"wid",
"toEmail",
"instanceIds"
],
"type": "object"
}