Skip to main content
PUT
/
v1
/
rbac
/
{permission_id}
Update permission
curl --request PUT \
  --url https://api.example.com/v1/rbac/{permission_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "permission": "<string>",
  "active": true
}
'

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

permission_id
string<uuid>
required

Body

application/json
permission
string
required
active
boolean
default:true

Response

200

Permission updated successfully