AgentGroups

Get single Agent Group

get
Authorizations
Path parameters
agentGroupIdinteger · int64Required

Agent Group Identifier

Responses
200

Success

application/json
get
GET /api/v1/agent-groups/{agentGroupId} HTTP/1.1
Host: 
Authorization: YOUR_API_KEY
Accept: */*
{
  "data": {
    "id": 1,
    "displayName": "text",
    "internalName": "text",
    "isCrossPlatform": true,
    "agents": [
      "text"
    ],
    "environment": {
      "id": 1,
      "displayName": "text"
    },
    "agentDetails": [
      {
        "url": "text",
        "httpPorts": [
          "text"
        ],
        "httpsPorts": [
          "text"
        ],
        "id": 1,
        "name": "text",
        "isGateway": true
      }
    ]
  }
}

Was this helpful?