DRAG DROP
-
Drag and drop the code snippets from the bottom onto the blanks in the code to retrieve the audit logs that were created after a specific date. Not all options are used.

DRAG DROP
-
Drag and drop the code snippets from the bottom onto the blanks in the code to retrieve the audit logs that were created after a specific date. Not all options are used.
- Intersight.com/api/v1 - Accept - Authorization - GET
correct
I think its GET, I am assuming that when you are using the generic requests method, and you are passing the method to it, that it will ignore the data param which is empty anyway.
auditrecords has only get method
Its GET, aaa/AuditRecords has only get method, as minomusi said: https://intersight.com/apidocs/apirefs/aaa/AuditRecords/model/
I think is POST not GEt as you cant send json with GET get(url, params, args) post(url, data, json, args) https://www.w3schools.com/python/module_requests.asp
The giving answer seems to be correct. The answer was: Intersight.com/api/v1 Accept Authorization POST ** for last one, the request was to create an audit entry; therefore, using POST.
Key word here is RETRIEVE the audit logs, so POST is wrong. GET is the correct operation
I am confused about GET method, since function is passing data to the request module. I think its POST
No, it does not. The payload is empty, payload ={}, which is typical for GET.
the HTTP method is GET, the payload is ommitted by the INTERSIGHT API