v1

latestSwagger 2.02026-07-178567199.3 KB
sources
users

Returns information about a specific user

Specific User within a data source

get/sources/{id}/users/{user_id}

Path parameters

idstring required

ID of the data source

user_idstring required

ID of the specific user

Response

Information relating to the user

namestring

Unique name of the user

passwordstring

Example response

{
  "name": "docbrown",
  "permissions": [
    {
      "scope": "all",
      "allowed": [
        "ViewAdmin",
        "ViewChronograf",
        "CreateDatabase",
        "CreateUserAndRole",
        "DropDatabase",
        "DropData",
        "ReadData",
        "WriteData",
        "ManageShard",
        "ManageContinuousQuery",
        "ManageQuery",
        "ManageSubscription",
        "Monitor",
        "KapacitorAPI"
      ]
    }
  ],
  "roles": [
    {
      "name": "timetravelers",
      "permissions": [
        {
          "scope": "database",
          "name": "telegraf",
          "allowed": [
            "ReadData",
            "WriteData"
          ]
        }
      ],
      "links": {
        "self": "/chronograf/v1/sources/3/roles/timetravelers"
      }
    }
  ],
  "links": {
    "self": "/chronograf/v1/sources/3/users/docbrown"
  }
}