For more information regarding the security incident at F5, the actions we are taking to address it, and our ongoing efforts to protect our customers, click here.

Forum Discussion

gbogdan's avatar
gbogdan
Icon for Altocumulus rankAltocumulus
Jan 31, 2023
Solved

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...
  • gbogdan's avatar
    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"       }    

    }