Hi there,
I am in process of integrating Devportal with third party API.
When an action is performed in DevPortal, Data needs to be posted to third party API.
I am able to do that without any problem. Now the question is where can I get the developer details.
I have $certified_app which is defined as below.
$certified_app = $app instanceOf ApigeeCompanyAppEntity ? new \Apigee\ManagementAPI\CompanyApp($config, $app->companyName): new \Apigee\ManagementAPI\DeveloperApp($config, $app->developer);
and would like to get developer email address and company name. What is the relationship between developer and the app in the implementation (I understand that Developer can be assigned to multiple apps.).
AbstractApp class has function to get getConsumerSecret(), getConsumerKey but couldnt find a function to get email address of developer. Do I need to use getAttribute function.
Any help is appreciated.