POST
/{orgId}/{itemId}/searches/{searchId}/shareWith
Update the list of groups a saved search is shared with by specifying the updated list in the json body. The adminAdvanced privilege is required.
Share Saved Search Parameters:
Parameter | Description | Data Type |
---|---|---|
groupIds | Required. Defines the Group Ids that the saved search will be shared with. | Array[String] |
Query parameters
Name | Type | Required |
---|---|---|
token | string¦null |
Body parameters
Supported content types: application/json
Type: groupIds
The list of groups to share the saved search.
Name | Type | Required |
---|---|---|
group | [string] |
Path parameters
Name | Type | Required |
---|---|---|
search | string | |
org | string | |
item | string |
Response status
Status | Meaning | Description | Schema |
---|---|---|---|
200 | OK | success | Success |
400 | Bad Request | Error | WorkflowExceptionDTO |
Examples
Request
# You can also use wget
curl -X POST /{orgId}/{itemId}/searches/{searchId}/shareWith \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <YOUR_TOKEN>' \
--data '{"groupIds":["string"]}'
Response
{
"success": true
}