GET developer details using developerId (using Management APIs)

I need to fetch a list of certain apps and their correlating developer information. Apps API only returns a developerId, but the Developer APIs only do GET on developer_email. Is there a shortcut or other API to help get a list of apps and the related developer/company information?

Thank you!

Solved Solved
0 3 211
1 ACCEPTED SOLUTION

the Developer APIs only do GET on developer_email.

Are you sure?

This works for me in Apigee Edge.

 

curl -i -H 'Authorization: Bearer TOKEN' \
 -X GET \
 'https://api.enterprise.apigee.com/v1/o/MYORG/developers/DEVELOPER_ID'

 

 

View solution in original post

3 REPLIES 3

the Developer APIs only do GET on developer_email.

Are you sure?

This works for me in Apigee Edge.

 

curl -i -H 'Authorization: Bearer TOKEN' \
 -X GET \
 'https://api.enterprise.apigee.com/v1/o/MYORG/developers/DEVELOPER_ID'

 

 

Thank you, Dino! That is excellent.

The documentation I was referencing that doesn't show a GET by id is here:

Developers API | Edge APIs (apigee.com)

 With Apigee Edge for Public Cloud, the maximum number of entities returned is 1000.

Is there a way of bypassing this limitation? Querying for apps (we have 1500+) I need to getting the first 1000, then send another request using a startKey param. I can post this question separately if you'd prefer.

Many thanks, again.