API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}
API Resource Path: /developers/{developer_email}
Update an existing developer profile with new values or additional attributes.
Verb: PUT
Auth: Basic AuthTo update an existing developer profile, you only need to provide the new modified pieces of the profile.
Sample Request:$ curl -H "Content-type:application/json" -X PUT -d \
'{
"firstNname" : "Ewoorde",
"lastName" : "Wilson",
"userName" : "wilson",
"attributes" : [ {
"name" : "region",
"value" : "north"
} ]
}' \
https://api.enterprise.apigee.com/v1/o/{org_name}/developers/{developer_email} \
-u myname:mypass
Sample Response:
{
"email" : "developer@apigee.com",
"firstName" : "Ewoorde",
"lastName" : "Wilson",
"userName" : "wilson",
"organizationName" : "AutomationOrganization",
"status" : "active",
"attributes" : [ {
"name" : "region",
"value" : "north"
} ],
"createdAt" : 1343052042964,
"createdBy" : "Admin",
"lastModifiedAt" : 1343052043555,
"lastModifiedBy" : "Admin"
}
Last updated:
about 1 month ago