API Platform Base Path: https://api.enterprise.apigee.com/v1/o/{org_name}

API Resource Path: /users

Creates a user in an organization on the API Platform

Verb: POST

Auth: Basic Auth

Sample Request:
$ curl -H "Content-type:application/json" -X POST -d \
'{
  "emailId" : "user@company",
  "firstName" : "User",
  "lastName" : "One",
   "password" : "secret"
}' \
https://api.enterprise.apigee.com/v1/o/{org_name}/users \
-u myname:mypass
Request Payload Elements:
Name Description Default Required?
emailId The user's email address, which functions as username for the account N/A Yes
FirstName The user's first name N/A Yes
LastName The user's last name N/A Yes
password The password used to login to the organization on enterprise.apigee.com, and to invoke the API Platform API. N/A No
Sample Response:
Success 2xx with proper response
{
  "emailId" : "user@company.com",
  "firstName" : "User",
  "lastName" : "One"
}
Last updated: 19 days ago