API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}

API Resource Path: /apps?apptype={app_type}

List all apps by app type (either company app or developer app)

Verb: GET

Auth: Basic Auth

Returns a list of all apps by app type. Valid app types are 'developer' (which returns all developer apps) and company (which returns all company apps).

Sample Request:
$ curl https://api.enterprise.apigee.com/v1/o/{org_name}/apps?"apptype=developer" \
-u myname:mypass 

$ curl https://api.enterprise.apigee.com/v1/o/{org_name}/apps?"apptype=company" \
-u myname:mypass 
Sample Response:
[ "app1.1", "app3.2", "app1.2", "app4.1" ]
Last updated: about 1 month ago