I've been reading about Cisco APIC REST API User Guide - https://www.cisco.com/c/en/us/td/docs/switches/datacenter/aci/apic/sw/1-x/api/rest/b_APIC_RESTful_API_User_Guide/performing_common_tasks.html
and managed to get in using JSON API in Postman.
Example (as documented in the link above):
POST https://192.0.20.123/api/aaaLogin.json
{
"aaaUser":{
"attributes":{
"name":"georgewa",
"pwd":"paSSword1"
}
}
}
There are bunch of examples in the document on how to make changes on the ACI, but I couldn't find any examples to make a simple query without making any changes.
Let say how to get/read the current configuration in ACI, let say NTP or SNMP setting using API request?