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

Authorizations

Authorization
string
header
required

API key authentication

Body

application/json

Bulk request to assign users to multiple team groups simultaneously, efficiently managing group memberships at scale.

addUsersToGroup
AddUsersToTeamGroup · object[]
teamId
object

Response

Response confirming the successful bulk addition of users to multiple team groups.