- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
Enhanced Security Measures in Place: To ensure a safer experience, we’ve implemented additional, temporary security measures for all users.
07-31-2024 07:48 AM - edited 07-31-2024 07:58 AM
Hi all,
I want to assign all incidents that are Linkedincident to a single owner. What should I do for this?
I tried to assign with top-user,machine-learning parameters. But that didn't work.
08-01-2024 03:06 PM
To assign all "linked" incidents to a specific owner in XSOAR, you can create a playbook or an automation script that searches for linked incidents and assigns them to the desired owner. Here is a sample script in Python you may customize according to your needs:
def main():
# Define the owner to whom incidents will be assigned
owner = 'specific-owner' # Replace with the actual owner's username
# Search for all linked incidents
search_results = demisto.executeCommand('getIncidents', {
'query': 'linked:true'
})
if not search_results or 'Contents' not in search_results[0]:
demisto.results('No linked incidents found.')
return
incidents = search_results[0]['Contents']['data']
# Assign each linked incident to the specified owner
for incident in incidents:
incident_id = incident['id']
demisto.executeCommand('demisto-api-post', {
'uri': f'incident/{incident_id}/owner',
'body': {
'owner': owner
}
})
demisto.results(f'{len(incidents)} linked incidents assigned to {owner}.')
if __name__ in ('__main__', '__builtin__', 'builtins'):
main()
08-02-2024 12:31 AM
Hi @oromeromoya
Thank you. I wanted to assign to the owner of the connected incident. So I give the id to 'SearchIncidentSummary'(linked incident's) and I take the owner and assign it to new incident. Thank you, I gained a different perspective.
Click Accept as Solution to acknowledge that the answer to your question has been provided.
The button appears next to the replies on topics you’ve started. The member who gave the solution and all future visitors to this topic will appreciate it!
These simple actions take just seconds of your time, but go a long way in showing appreciation for community members and the LIVEcommunity as a whole!
The LIVEcommunity thanks you for your participation!