API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}
API Resource Path: /developers/developer_email}
Returns the profile for the Developer by email address.
Verb: GET
Auth: Basic AuthReturns the profile for the Developer by email address. Note that email address must be URL encoded: developer@apigee.com should be encoded as developer%40apigee%2Ecom, for example, or it may be escaped, "developer.apigee.com"
Sample Response:{
"apps" : [ "myApp" ],
"email" : "developer@company.com",
"firstName" : "Nikola",
"lastName" : "Tesla",
"userName" : "theramin",
"organizationName" : "myorg",
"status" : "active",
"attributes" : [ {
"name" : "region",
"value" : "north"
} ],
"createdAt" : 1344280370614,
"createdBy" : "admin@apigee.com",
"lastModifiedAt" : 1344280370614,
"lastModifiedBy" : "admin@apigee.com"
}
Response Payload Elements:
| Name | Description |
|---|---|
| apps | A list of apps associated with the developer |
| The developers' email--used as the unique key to request info about the developer | |
| firstName | The developer's first name |
| lastName | The developer's last name |
| userName | A username created by the developer--unused in Apigee |
| organizationName | The organization where the developer is registered |
| status | The developer's status--active, inactive, login_lock |
| attributes | Arbitrary name/value attributes that can be used to extend the developer profile |