PUT
/
rbac
/
groups
/
{id}
curl --request PUT \
  --url https://api.axiom.co/v2/rbac/groups/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "description": "<string>",
  "members": [
    "<string>"
  ],
  "name": "<string>",
  "roles": [
    "<string>"
  ]
}'
{
  "description": "<string>",
  "isManaged": true,
  "members": [
    "<string>"
  ],
  "name": "<string>",
  "roles": [
    "<string>"
  ],
  "id": "<string>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Path Parameters

id
string
required

Unique identifier of the group to update

Body

application/json
The updated group configuration

Defines a group of users for organizational purposes

Response

200 - application/json
The group was successfully updated

Extends the base Group type to include a unique identifier