Skip to main content
Create Role
curl --request PUT \
  --url https://api.coralogix.com/mgmt/openapi/3/aaa/team-roles/v1/custom-roles \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "name": "<string>",
  "parentRoleId": 123,
  "permissions": [
    "<string>"
  ],
  "teamId": 123
}
'
{
  "id": 123
}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json
description
string
name
string
parentRoleId
integer<int64>
permissions
string[]
teamId
integer<int64>

Response

id
integer<int64>