Hi Michael, as the error says, the query filter should contain a "string", you are sending an "array". The API documentation is not always very clear...(https://docs.paloaltonetworks.com/cortex/cortex-xdr/cortex-xdr-api/cortex-xdr-apis/incident-management/get-incidents) Change your query request to: Body: { "request_data" : { "filters" : [ { "field" : "description" , "operator" : "contains" , "value" : "server1" } ], "search_from" : 0 , "search_to" : 100 , "sort" : { "field" : "creation_time" , "keyword" : "desc" } } } and it should work... Cheers Phil
... View more