Skip to main content
Update Team Group
curl --request PUT \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/team-groups/v1 \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "description": "<string>",
  "externalId": "<string>",
  "groupId": {
    "id": 123
  },
  "groupType": "GROUP_TYPE_UNSPECIFIED",
  "name": "<string>",
  "nextGenScopeId": "<string>",
  "roleUpdates": {
    "roleIds": [
      {
        "id": 123
      }
    ]
  },
  "scopeFilters": {
    "applications": [
      {
        "filterType": "FILTER_TYPE_UNSPECIFIED",
        "term": "<string>"
      }
    ],
    "subsystems": [
      {
        "filterType": "FILTER_TYPE_UNSPECIFIED",
        "term": "<string>"
      }
    ]
  },
  "userUpdates": {
    "userIds": [
      {
        "id": "<string>"
      }
    ]
  }
}
'
{}

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

Request to modify an existing team group's details, including its name, description, roles, users, and scope settings.

description
string
externalId
string
groupId
TeamGroupId · object

This data structure represents the information associated with a team group.

groupType
enum<string>
Available options:
GROUP_TYPE_UNSPECIFIED,
GROUP_TYPE_OPEN,
GROUP_TYPE_CLOSED,
GROUP_TYPE_RESTRICTED
name
string
nextGenScopeId
string
roleUpdates
RoleUpdates · object

This data structure represents the information associated with an API key.

scopeFilters
object
userUpdates
UserUpdates · object

This data structure represents the information associated with an API key.

Response

Response confirming the successful update of a team group's configuration.