Create additional user for administrative tasks

Not applicable

We like to add more users for administrative task eg.Created org/env..

Could you please let us know weather we can add additional urers.

If yes then in apigee-env.sh how can we add additinal email id to parameter ADMIN_EMAIL.

Even if we are working as a team, only the user having administrative previllage have option to create now.

Can you please help here.

Thanks in Advance,

Amith

1 2 189
2 REPLIES 2

Yes, you can do so.

In the Administrative UI for Apigee Edge, navigate to Admin, then Organization users.

3639-click.png

For the OPDK, you can use the add script, found in
/opt/apigee/apigee-adminapi-4.16.05-0.0.17/adminapi/users

...or use the API directly, something like this:

curl -X POST -i -u admin@yoursite.com -H content-type:application/xml \
 https://your-mgmt-server/v1/users \
 -d '<User>
  <FirstName>${FIRST_NAME}</FirstName>
  <LastName>${LAST_NAME}</LastName>
  <Password>${PASSWORD}</Password>
  <EmailId>${USEREMAIL}</EmailId></User>'

users.png

From UI we are not able to add global admin.

Currently we have only one global admin with user parameter 'admin admin'.

How to created one more user with 'admin admin'

We are able to add users to sysadmin user role.

But still we are not able to step org using sysadmin.

/apigee/apigee4/bin # ./setup-org.sh

This script will create an organization with an organization admin,
enable role based access control and create environments.
Additionally it allows to enable Analytics for the created organization

Enter system admin password:

Password invalid, please try again
Enter system admin password:

Could you please help here.

Regards,

Amith