Skip to main content
Add Users To Team Group
curl --request POST \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/team-groups/v1/{group_id.id}/users \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "userIds": [
    {
      "id": "<string>"
    }
  ]
}'
{
  "teamId": {
    "id": 123
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

group_id.id
integer
required

Body

application/json

Request to assign additional users to an existing team group, granting them the group's roles and scope permissions.

userIds
object[]

Response

Response confirming the successful addition of users to the specified team group.

teamId
object