Icinga2 API credentials

On a fresh install what credentials should I give here:

you can either use the root user or create a icingadb user in the same file:

root@icinga-node-:/# cat /etc/icinga2/conf.d/api-users.conf 
/**
 * The ApiUser objects are used for authentication against the API.
 */
object ApiUser "root" {
  password = "******"
  // client_cn = ""

  permissions = [ "*" ]
}

object ApiUser "icingadb-web" {
    password = "CHANGEME"
    permissions = [ "actions/*", "objects/modify/*", "objects/query/*", "status/query" ]
}

here are the docs for that:

dont forget to restart icinga2 after changing the file

Got it. It would help to just put the path to that file in this step.

Thanks for the feedback. Please note that this is documented in the Get Started guide under section 5.3 Icinga 2 API.