- Access exclusive content
- Connect with peers
- Share your expertise
- Find support resources
11-24-2022 03:08 AM
How to convert a list into int in xsoar automation.
11-28-2022 08:04 AM
In your automation you can retrieve the list and the contents of the list using the getList function, available from your Script Helper.
# get the list contents.
my_list = demisto.executeCommand("getList", {"listName":"YourListNameHere"})[0]['Contents']
Once you have the contents of the list, you can do with it what you want in your python code.
11-28-2022 08:04 AM
In your automation you can retrieve the list and the contents of the list using the getList function, available from your Script Helper.
# get the list contents.
my_list = demisto.executeCommand("getList", {"listName":"YourListNameHere"})[0]['Contents']
Once you have the contents of the list, you can do with it what you want in your python code.
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!