update_alert_assignee
Transfer ownership of multiple alerts to a specified user using their ID. Ensure efficient alert management by reassigning alerts with a single action. Requires 'Manage Alerts' permission.
Instructions
Update the assignee of one or more alerts through the assignee's ID.
Returns: Dict containing: - success: Boolean indicating if the update was successful - alerts: List of updated alert IDs if successful - message: Error message if unsuccessful
Permissions:{'all_of': ['Manage Alerts']}
Input Schema
Name | Required | Description | Default |
---|---|---|---|
alert_ids | Yes | List of alert IDs to update | |
assignee_id | Yes | The ID of the user to assign the alerts to |
Input Schema (JSON Schema)
{
"properties": {
"alert_ids": {
"description": "List of alert IDs to update",
"items": {
"type": "string"
},
"title": "Alert Ids",
"type": "array"
},
"assignee_id": {
"description": "The ID of the user to assign the alerts to",
"minLength": 1,
"title": "Assignee Id",
"type": "string"
}
},
"required": [
"alert_ids",
"assignee_id"
],
"type": "object"
}