Is there a Management API to obtain a list of deployed basepaths?

We have been using the Apigee Management APIs to get a list of proxy basepaths and compare them to our overall enterprise mindmap for our APIs in an effort to ensure consistency.
A few calls returns a basepath (get proxy, get revisions, get latest rev):

api.enterprise.apigee.com/v1/organizations/{orgId}/apis/{proxyName}

api.enterprise.apigee.com/v1/organizations/{orgId}/apis/{proxyName}/revisions

api.enterprise.apigee.com/v1/organizations/{orgId}/apis/{proxyName}/revisions/{rev}

The basepath provided comes from the "base configuration xml" (/apiproxy/name_of_the_proxy.xml). This basepath does not reflect the deployed basepath; the "proxyendpoint configuration xml" (/apiproxy/proxies/default.xml) is the file that contains the runtime (deployed) basepath.
Is there an API for getting the deployed basepath? We can query our repositories for our BU, but the enterprise has multiple repos using different repo management solutions owned by different BUs so is problematic.
I hope that is clear and thanks for your time!
0 2 233
2 REPLIES 2

Not applicable

you can get runtime basepath and information using below api call

api.enterprise.apigee.com/v1/organizations/{orgId}/apis/{proxyName}/revisions/{rev}/proxies/default

Fantastic! I will give it a go.