Ok i moved one step further. Now i get HTTP 500 🙂 It looks that i was missing mandatory "name" parameter (this sounds reasonable to have config Query name as a required parameter). Unfortunately API docs , do not mention anything about that this field is mandatory. So now i get HTTP 500 error (internal server error) 'x-redlock-status': '[{"i18nKey":"internal_error","severity":"error","subject":null}]' I invoke POST against URL (where suffix of the url ismy successfuly invoked search Query id): https://api2.eu.prismacloud.io/search/history/3ae5e3e7-532c-4c69-b858-xxxxxxxxxx My HTTP request body : {"cloudType":"aws","searchType":"config","description":"","saved":true,"query":"config where api.name = 'aws-ec2-describe-subnets'","name":"MySavedQueryName-1"} My HTTP headers: { 'accept' : "application/json; charset=UTF-8" , 'x-redlock-auth' : HERE_MY_JWT, 'content-type' : 'application/json' , 'User-Agent' : 'Python3.7 script' } What im missing here?
... View more