Datadog · Schema

APIKeyUpdateData

Object used to update an API key.

AnalyticsDashboardsMonitoringPlatformT1Visualizations

Properties

Name Type Description
attributes object
id string ID of the API key.
type object
View JSON Schema on GitHub

JSON Schema

datadog-api-api-key-update-data-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/datadog/refs/heads/main/json-schema/datadog-api-api-key-update-data-schema.json",
  "title": "APIKeyUpdateData",
  "description": "Object used to update an API key.",
  "type": "object",
  "properties": {
    "attributes": {
      "$ref": "#/components/schemas/APIKeyUpdateAttributes"
    },
    "id": {
      "description": "ID of the API key.",
      "example": "00112233-4455-6677-8899-aabbccddeeff",
      "type": "string"
    },
    "type": {
      "$ref": "#/components/schemas/APIKeysType"
    }
  },
  "required": [
    "attributes",
    "id",
    "type"
  ]
}