v1

latestOpenAPI 3.0.02026-07-249372139.7 KB
Environment

Get Related Entities per Environment

Returns all the Related Entities that are tied to a single Environment such as Agents, Launchpoints, and Integration mappings

get/environments/{environmentId}/relatedEntities

Path parameters

environmentIdinteger required

Environment ID

Response

Success

Successboolean

Example response

{
  "Success": true,
  "Data": {
    "ID": 1,
    "LaunchPoints": [
      {
        "ID": 1,
        "Alias": "string",
        "SystemID": 1,
        "InspectorID": 25,
        "InspectorName": "string",
        "Enabled": true,
        "Status": "string"
      }
    ],
    "Agents": [
      {
        "ID": 1,
        "Name": "string",
        "Description": "string",
        "Hostname": "ip address",
        "Platform": "string",
        "Managed": true
      }
    ],
    "IntegrationMappings": [
      {
        "ID": 1,
        "Integration": "string"
      }
    ],
    "ChildEnvironments": [
      {
        "ID": 1,
        "Name": "string",
        "Status": 1,
        "Visible": true
      }
    ]
  }
}