API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}
API Resource Path: /developers?app={app_name}
Gets the developer profile by app name
Verb: GET
Auth: Basic AuthThis call enables you to retrieve a developer's profile based on the name of an app. The profile retrieved is for the developer who registered the app in your organization.
Sample Response:{
"apps" : [ "MyTestApp" ],
"email" : "developer2@apigee.com",
"firstName" : "Woodre",
"last_name" : "Wilson",
"userName" : "wilson",
"organizationName" : "gsorg",
"status" : "active",
"attributes" : [ {
"name" : "region",
"value" : "north"
} ],
"createdAt" : 1342258630656,
"createdBy" : "defaultUser",
"lastModifiedAt" : 1342258630656,
"lastModifiedBy" : "defaultUser"
}
Response Payload Elements:
| Name | Description |
|---|---|
| apps | The name of the App |
| The email address of the Developer who registered the App | |
| firstName | The first name of the Developer who registered the App |
| last_name | The last name of the Developer who registered the App |
| userName | The username of the Developer who registered the App (unused by Apigee) |
| organizationName | The Organization which the Developer who registered the App belongs |
| status | The status of the Developer who registered the App (active, inactive, or login_lock |
| attributes | Arbitrary name/value attributes that are part of the Developer profile |
| createdAt | The Unix time at which the Developer profile was created |
| createdBy | The Apigee username of the user who created the Developer profile |
| lastModifiedAt | The Unix time at which the Developer profile was last modified |
| lastModifiedAt | The Apigee username of the user who most recently modified the Developer profile |