Cisco ACI - Adding a Tenant from Postman Using the API
Before following these steps you need to have a token for the API stored in Postman. The process for this can be found here . Creating the Tenant Right Click on your Collection Name (Cisco ACI Sandbox in my case), and click "Add Request" Right Click on your Collection Name (Cisco ACI Sandbox in my case), and click "Add Request" There are a couple steps in this piece: Name the Request "Create Tenant". Change the yype of request from GET to POST, since we're pushing a configuration. You can use the following URL to test against the sandbox, but you can change the hostname to your own APIC. https:// sandboxapicdc.cisco.com /api/mo/uni.json 4. Lastly in the Body you want to put the following JSON in place, and edit the name to whatever you'd like it to be. { "fvTenant" : { "attributes" : { "name" : " DBTN-Tenant " } } } 5. and finally, Click "Send" Now we will want to valid...