Skip to main content
Get Team Group By Name
curl --request GET \
  --url https://api.coralogix.com/mgmt/openapi/latest/aaa/team-groups/v1/{name} \
  --header 'Authorization: <api-key>'
{
  "group": {
    "createdAt": "2023-11-07T05:31:56Z",
    "description": "<string>",
    "externalId": "<string>",
    "groupId": {
      "id": 123
    },
    "groupOrigin": "GROUP_ORIGIN_UNSPECIFIED",
    "groupType": "GROUP_TYPE_UNSPECIFIED",
    "name": "<string>",
    "nextGenScopeId": "<string>",
    "roles": [
      {
        "description": "<string>",
        "name": "<string>",
        "roleId": {
          "id": 123
        }
      }
    ],
    "scope": {
      "filters": {
        "applications": [
          {
            "filterType": "FILTER_TYPE_UNSPECIFIED",
            "term": "<string>"
          }
        ],
        "subsystems": [
          {
            "filterType": "FILTER_TYPE_UNSPECIFIED",
            "term": "<string>"
          }
        ]
      },
      "id": {
        "id": 123
      }
    },
    "teamId": {
      "id": 123
    },
    "updatedAt": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication

Path Parameters

name
string
required

Response

Response containing the complete details of a team group that matches the requested name, including its members, roles, and scope settings.

group
object