I am trying to use the Management API with an On-Premises installation of Edge and can't find documentation that shows where to make calls.
http://apigee.com/docs/developers-services/content/using-edge-management-api-publish-apis
All example calls assume you're using cloud installation. Suppose my on premises Management UI console is being hosted at www.apigee.myorganization.com, how do I know where I can call the Management API to say create a proxy?
Solved! Go to Solution.
The URL of Edge APIs for an on-prem installation are in the form:
<ManagementServer_IP>:8080/v1/<apiURI>
That means they reference port 8080 at the IP address of the Management Server. Often you will create a DNS record for <ManagementServer_IP>:8080 so that you can reference it in the form:
myEdgeAPI.com/v1/<apiURI>
Stephen