Is there a direct API call that can be used to retrieve email address <=> developerId mapping from Edge? It would be even better if there would be a call that could return this mapping for an input set.
I haven’t found anything like this in the official documentation. Loading developers one by one or loading all of them to figure out this mapping for n+1 input value looks like an unnecessary overhead and it also requires custom coding on the client side.
HI @Dezső BICZÓ,
You can use the developer resource in the management api and use either dev-emai or dev-id interchangeable.
See here
https://docs.apigee.com/management/apis/get/organizations/%7Borg_name%7D/developers/%7Bdeveloper_email_or_id%7D
Hope it helps
Hi @isaias.arellano.delgado.
Thanks but this API documentation has already mentioned in my question. I want to avoid unnecesarely loading a complete developer object (or developer objects) to be able to figure out this mapping on the client side.