You can pull the information for installs if you're looking for when something was installed by going to Settings > User and Roles > Audit Trail. Here's a sample query to get you started object:ContentPack and type:install and action.ID:CommonScripts modified:>2023-04-01T00:00:00 Here's the reference in the admin guide https://docs-cortex.paloaltonetworks.com/r/Cortex-XSOAR/6.5/Cortex-XSOAR-Administrator-Guide/Audit-Trail Here's a command that pulls no more than 200 entries for common script installs from the past 3 months. You can see more syntax under getAudit in the api guide https://<yourdomain name>/api#_getaudits !demisto-api-post uri=/settings/audits body="{\"page\":0,\"size\":200,\"query\":\"object:ContentPack and type:install and action.ID:CommonScripts\", \"period\": {\"by\": \"\",\"byfrom\": \"months\", \"toValue\": null, \"fromValue\": 3, \"field\": \"\" }}"
... View more