Assign and unassign users from detection alerts Beta
Assign users to detection alerts, and unassign them from alerts.
You cannot add and remove the same assignee in the same request.
Body Required
-
Details about the assignees to assign and unassign.
Additional properties are allowed.
-
A string that is not empty and does not contain only whitespace
At least
1
element. Minimum length of each is1
. Format of each should match the following pattern:^(?! *$).+$
.
POST /api/detection_engine/signals/assignees
curl \
-X POST https://localhost:5601/api/detection_engine/signals/assignees \
-H "Content-Type: application/json; Elastic-Api-Version=2023-10-31"
Request examples
{
"assignees": {
"add": [
"string"
],
"remove": [
"string"
]
},
"ids": [
"string"
]
}