Get user details
curl --request GET \
--url https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}import requests
url = "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": [
{
"account_id": "<string>",
"cluster_id": "<string>",
"cluster_role": {
"account_id": "<string>",
"assigned_subjects": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"resource_version": "<string>",
"role_bindings": [
{
"account_id": "<string>",
"cluster_id": "<string>",
"cluster_role": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"groups": [
{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}
],
"name": "<string>",
"namespace": "<string>",
"resource_version": "<string>",
"role": {
"account_id": "<string>",
"assigned_subjects": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"resource_version": "<string>",
"role_bindings": "<array>",
"rules": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"uid": "<string>",
"updated_at": "<string>"
},
"role_ref_api_group": "<string>",
"role_ref_kind": "<string>",
"role_ref_name": "<string>",
"service_accounts": [
{
"account_id": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"resource_version": "<string>",
"role_bindings": "<array>",
"uid": "<string>",
"updated_at": "<string>"
}
],
"uid": "<string>",
"updated_at": "<string>",
"users": "<array>"
}
],
"rules": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"uid": "<string>",
"updated_at": "<string>"
},
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"groups": [
{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}
],
"name": "<string>",
"resource_version": "<string>",
"role_ref_api_group": "<string>",
"role_ref_kind": "<string>",
"role_ref_name": "<string>",
"service_accounts": [
{
"account_id": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"resource_version": "<string>",
"role_bindings": "<array>",
"uid": "<string>",
"updated_at": "<string>"
}
],
"uid": "<string>",
"updated_at": "<string>",
"users": "<array>"
}
],
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}{
"status": 123,
"code": "<string>",
"request_id": "<string>",
"validation_details": [
{
"code": "<string>",
"field": "<string>",
"message": "<string>",
"param": "<string>"
}
]
}Resources
Get user details
Get user details
GET
/
accounts
/
{account_id}
/
resources
/
rbac
/
users
/
{id}
Get user details
curl --request GET \
--url https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}import requests
url = "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));<?php
$curl = curl_init();
curl_setopt_array($curl, [
CURLOPT_URL => "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.prd.rad.security/accounts/{account_id}/resources/rbac/users/{id}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": [
{
"account_id": "<string>",
"cluster_id": "<string>",
"cluster_role": {
"account_id": "<string>",
"assigned_subjects": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"resource_version": "<string>",
"role_bindings": [
{
"account_id": "<string>",
"cluster_id": "<string>",
"cluster_role": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"groups": [
{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}
],
"name": "<string>",
"namespace": "<string>",
"resource_version": "<string>",
"role": {
"account_id": "<string>",
"assigned_subjects": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"resource_version": "<string>",
"role_bindings": "<array>",
"rules": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"uid": "<string>",
"updated_at": "<string>"
},
"role_ref_api_group": "<string>",
"role_ref_kind": "<string>",
"role_ref_name": "<string>",
"service_accounts": [
{
"account_id": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"resource_version": "<string>",
"role_bindings": "<array>",
"uid": "<string>",
"updated_at": "<string>"
}
],
"uid": "<string>",
"updated_at": "<string>",
"users": "<array>"
}
],
"rules": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"uid": "<string>",
"updated_at": "<string>"
},
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"groups": [
{
"account_id": "<string>",
"api_group": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<unknown>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}
],
"name": "<string>",
"resource_version": "<string>",
"role_ref_api_group": "<string>",
"role_ref_kind": "<string>",
"role_ref_name": "<string>",
"service_accounts": [
{
"account_id": "<string>",
"assigned_roles": [
{
"kind": "<string>",
"name": "<string>",
"namespace": "<string>",
"uid": "<string>",
"account_id": "<string>",
"cluster_id": "<string>",
"created_at": "<string>",
"id": "<string>",
"updated_at": "<string>"
}
],
"cluster_id": "<string>",
"cluster_role_bindings": "<array>",
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"resource_version": "<string>",
"role_bindings": "<array>",
"uid": "<string>",
"updated_at": "<string>"
}
],
"uid": "<string>",
"updated_at": "<string>",
"users": "<array>"
}
],
"created_at": "<string>",
"graph": {
"edges": [
{
"from_id": "<string>",
"id": "<string>",
"to_id": "<string>",
"type": "<string>"
}
],
"nodes": [
{
"id": "<string>",
"properties": {},
"type": "<string>"
}
]
},
"id": "<string>",
"name": "<string>",
"namespace": "<string>",
"permissions": [
{
"category": "<string>",
"content": "<unknown>",
"created_at": "<string>",
"deleted_at": "<string>",
"description": "<string>",
"id": "<string>",
"severity": "<string>",
"status": "<string>",
"tags": [
{
"key": "<string>",
"source": "<string>",
"value": "<string>"
}
],
"title": "<string>",
"type": "<string>",
"updated_at": "<string>",
"version": "<string>",
"api_groups": [
"<string>"
],
"cluster_role_uid": "<string>",
"namespace": "<string>",
"resource_names": [
"<string>"
],
"resources": [
"<string>"
],
"role_uid": "<string>",
"verbs": [
"<string>"
]
}
],
"role_bindings": "<array>",
"updated_at": "<string>"
}{
"status": 123,
"code": "<string>",
"request_id": "<string>",
"validation_details": [
{
"code": "<string>",
"field": "<string>",
"message": "<string>",
"param": "<string>"
}
]
}Response
OK
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
Show child attributes
⌘I