Skip to main content
GET
/
rbac
/
groups
/
{id}
Get group by ID
curl --request GET \
  --url https://api.axiom.co/v2/rbac/groups/{id} \
  --header 'Authorization: Bearer <token>'
{
  "name": "<string>",
  "id": "<string>",
  "description": "<string>",
  "isManaged": true,
  "members": [
    "<string>"
  ],
  "roles": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://axiom.co/docs/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate using an API token or personal access token (PAT). Include the token as a Bearer token: Authorization: Bearer <token>. For more information, see Tokens.

Path Parameters

id
string
required

Unique identifier of the group to retrieve

Response

200 - application/json

The group was successfully retrieved

Extends the base Group type to include a unique identifier

name
string
required

Unique name identifier for the group

id
string
required

Unique identifier for the group

description
string

Detailed description of the group's purpose and scope

isManaged
boolean
read-only

Whether the group is managed by Axiom

members
string[]

List of user IDs that are assigned to this group

roles
string[]

List of role IDs that are assigned to this group