Retrieve role
GET
/v2/rbac/roles/{id}Features
Send the token in the Authorization: Bearer API_TOKEN header. See Tokens for which token types this endpoint accepts.
Input1
Sent from your browser straight to the API — never to Docsbook, never stored.
(path) Unique identifier of the role to retrieve
Output7
Defines the available permissions for dataset operations
Detailed description of the role's purpose and scope
List of user IDs that are assigned to this role
Unique name identifier for the role
Defines organization-wide permissions and capabilities
Defines the available permissions for view operations
Unique identifier for the role
Responses
200The role was successfully retrieved
Example input
curl 'https://api.axiom.co/v2/rbac/roles/{id}' \
-H 'Authorization: Bearer API_TOKEN'Example output
{
"datasetCapabilities": {},
"description": "string",
"members": [
"string"
],
"name": "string",
"orgCapabilities": {
"annotations": [
"create"
],
"apiTokens": [
"create"
],
"auditLog": [
"read"
],
"billing": [
"read"
],
"dashboards": [
"create"
],
"datasets": [
"create"
],
"endpoints": [
"create"
],
"flows": [
"create"
],
"integrations": [
"create"
],
"monitors": [
"create"
],
"notifiers": [
"create"
],
"rbac": [
"create"
]
},
"viewCapabilities": {},
"id": "string"
}