Make apigee portal read-only

Hi, I use apigee built-in portal from apigee.com

I want some of my users to be "read only", e.g.:

  1. disable the "Try This API" feature
  2. cannot register apps
  3. cannot register team

Basically they just see API documentation, and that's it

How can I do this on apigee portal?

On "pages" or in "menus" section, there is no link to disabled,

Thanks

0 3 137
3 REPLIES 3

It's not possible to disable menu links but it is possible to disable them. Similarly it's not possible to disable the "Try this API" feature but you could probably use CSS to hide it if you'd like.

Which CSS I should update?

Adding:

.apis-explorer {
  visibility: hidden;
}

to my custom styles in the Advanced Theme editor worked for me.