Dynatrace · JSON Structure

Account Management Api Group Create Request Structure

Request body for creating or updating a group.

Type: object Properties: 2 Required: 1
AI OperationsAnalyticsAPMApplication Performance MonitoringApplication SecurityAutomationCloud MonitoringDigital Experience ManagementIntelligenceObservability

GroupCreateRequest is a JSON Structure definition published by Dynatrace, describing 2 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name description

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/dynatrace/refs/heads/main/json-structure/account-management-api-group-create-request-structure.json",
  "description": "Request body for creating or updating a group.",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "The display name of the group.",
      "example": "Production Service"
    },
    "description": {
      "type": "string",
      "description": "An optional description of the group's purpose or access scope.",
      "example": "Example description."
    }
  },
  "required": [
    "name"
  ],
  "name": "GroupCreateRequest"
}