Spaces method and path for this operation:
post /s/{space_id}/api/detection_engine/signals/assignees
Refer to Spaces for more information.
Assign users to detection alerts, and unassign them from alerts.
You cannot add and remove the same assignee in the same request.
POST
/api/detection_engine/signals/assignees
curl \
--request POST 'https://localhost:5601/api/detection_engine/signals/assignees' \
--header "Authorization: $API_KEY" \
--header "Content-Type: application/json" \
--data '{
"assignees": {
"add": [
"string"
],
"remove": [
"string"
]
},
"ids": [
"string"
]
}'