Options for creating a Grafana API Token

Viewed 2165

My organization runs a grafana 7.0 instance that only allows SSO logins. I would like to create an API token for my user account but based on these instruction it seems like doing so is not possible without supplying a password. Is this understanding accurate?

2 Answers

As @Amal.Touzani mentioned, API key is created per organisation, not per user.

Instruction, mentioned by you, needs admin password to authenticate the admin user during API token creation. Later on access level will be defined by role specified in request, in example it is "role": "Admin". Role could be Viewer, Editor or Admin (as mentioned here)

Of course, all these steps could be done from Grafana Administration UI: enter image description here

Related