gbogdan
Jan 31, 2023Altocumulus
BIG-IQ RestAPI - retrieve customized Web Application Security Event Log
Hello , As per following example, https://clouddocs.f5.com/products/big-iq/mgmt-api/v0.0/HowToSamples/bigiq_public_api_wf/asm/t_get_event_log_record_by_support_id.html we can retrieve info about the...
- Feb 24, 2023
This is how can be done :
POST /mgmt/cm/shared/es/logiq/asmindex/_search?filter_path=hits.hits._source
Request Body:{ "query":{
"query_string":{
"query":"support_id: 123456789" }
},
"_source": "staged_sig_ids", <====
"from":0,
"size":50,
"sort":{ "date_time":"desc" }
}