Returns the specified User Projects and Roles information
GET/v1/users/:uid/projects
Returns a User with projects and roles
Request
Path Parameters
uid stringrequired
Responses
- 200
 
OK
- application/json
 
- Schema
 - Example (from schema)
 
Schema
Array [
Array [
]
Array [
]
]
projects
object[]
inheritedRoles
object[]
namestring
uidstring
namestring
roles
object[]
namestring
uidstring
uidstring
{
  "projects": [
    {
      "inheritedRoles": [
        {
          "name": "string",
          "uid": "string"
        }
      ],
      "name": "string",
      "roles": [
        {
          "name": "string",
          "uid": "string"
        }
      ],
      "uid": "string"
    }
  ]
}
Loading...