Dynatrace · Schema

EntityLookupRequest

Request body for looking up an entity by name and type.

AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

Properties

Name Type Description
name string The display name of the entity to look up.
type string The entity type to search within, e.g., SERVICE, HOST.
View JSON Schema on GitHub

JSON Schema

entities-api-v2-entity-lookup-request-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-schema/entities-api-v2-entity-lookup-request-schema.json",
  "title": "EntityLookupRequest",
  "description": "Request body for looking up an entity by name and type.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name of the entity to look up.",
      "example": "Production Service"
    },
    "type": {
      "type": "string",
      "description": "The entity type to search within, e.g., SERVICE, HOST.",
      "example": "STANDARD"
    }
  },
  "required": [
    "name",
    "type"
  ]
}