post_share_multi
Share multiple GoLogin browser profiles or folders with specified recipients by assigning roles like administrator, redactor, or guest.
Instructions
Create multiple shares
Input Schema
Name | Required | Description | Default |
---|---|---|---|
instanceIds | Yes | Ids of the instances you want to share. | |
recepients | Yes | Array of emails of the recipients. | |
role | No | Role of the recipient | |
type | Yes | Type of the instance you want to share. You can share particular profiles or group of profiles as a folder. |
Input Schema (JSON Schema)
{
"properties": {
"instanceIds": {
"description": "Ids of the instances you want to share.",
"items": {
"type": "string"
},
"type": "array"
},
"recepients": {
"description": "Array of emails of the recipients.",
"items": {
"type": "string"
},
"type": "array"
},
"role": {
"description": "Role of the recipient",
"enum": [
"administrator",
"redactor",
"guest"
],
"type": "string"
},
"type": {
"description": "Type of the instance you want to share. You can share particular profiles or group of profiles as a folder.",
"enum": [
"profile",
"folder"
],
"type": "string"
}
},
"required": [
"type",
"instanceIds",
"recepients"
],
"type": "object"
}