Fleet Automation

Manage automated deployments across your fleet of hosts.

Fleet Automation provides two types of deployments:

Configuration Deployments (/configure):

  • Apply configuration file changes to target hosts
  • Support merge-patch operations to update specific configuration fields
  • Support delete operations to remove configuration files
  • Useful for updating Datadog Agent settings, integration configs, and more

Package Upgrade Deployments (/upgrade):

  • Upgrade the Datadog Agent to specific versions

This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

GET https://api.ap1.datadoghq.com/api/unstable/fleet/agentshttps://api.ap2.datadoghq.com/api/unstable/fleet/agentshttps://api.datadoghq.eu/api/unstable/fleet/agentshttps://api.ddog-gov.com/api/unstable/fleet/agentshttps://api.datadoghq.com/api/unstable/fleet/agentshttps://api.us3.datadoghq.com/api/unstable/fleet/agentshttps://api.us5.datadoghq.com/api/unstable/fleet/agents

Overview

Retrieve a list of all available Datadog Agent versions.

This endpoint returns the available Agent versions that can be deployed to your fleet. These versions are used when creating deployments or configuring schedules for automated Agent upgrades.

This endpoint requires the hosts_read permission.

Response

OK

Response containing a list of available Agent versions.

Expand All

Field

Type

Description

data [required]

[object]

Array of available Agent versions.

attributes

object

version

string

The Agent version string.

id [required]

string

Unique identifier for the Agent version (same as version).

type [required]

enum

The type of Agent version resource. Allowed enum values: agent_version

default: agent_version

{
  "data": [
    {
      "attributes": {
        "version": "7.50.0"
      },
      "id": "7.50.0",
      "type": "agent_version"
    }
  ]
}

Bad Request

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Unauthorized

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Forbidden

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Not Found

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Code Example

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/agents" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

GET https://api.ap1.datadoghq.com/api/unstable/fleet/deploymentshttps://api.ap2.datadoghq.com/api/unstable/fleet/deploymentshttps://api.datadoghq.eu/api/unstable/fleet/deploymentshttps://api.ddog-gov.com/api/unstable/fleet/deploymentshttps://api.datadoghq.com/api/unstable/fleet/deploymentshttps://api.us3.datadoghq.com/api/unstable/fleet/deploymentshttps://api.us5.datadoghq.com/api/unstable/fleet/deployments

Overview

Retrieve a list of all deployments for fleet automation. Use the page_size and page_offset parameters to paginate results. This endpoint requires the hosts_read permission.

Arguments

Query Strings

Name

Type

Description

page_size

integer

Number of deployments to return per page. Maximum value is 100.

page_offset

integer

Index of the first deployment to return. Use this with page_size to paginate through results.

Response

OK

Response containing a paginated list of deployments.

Expand All

Field

Type

Description

data [required]

[object]

Array of deployments matching the query criteria.

attributes [required]

object

Attributes of a deployment in the response.

config_operations

[object]

Ordered list of configuration file operations to perform on the target hosts.

file_op [required]

enum

Type of file operation to perform on the target configuration file.

  • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
  • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

file_path [required]

string

Absolute path to the target configuration file on the host.

patch

object

Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

estimated_end_time_unix

int64

Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).

filter_query

string

Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

high_level_status

string

Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").

hosts

[object]

Paginated list of hosts in this deployment with their individual statuses. Only included when fetching a single deployment by ID. Use the limit and page query parameters to navigate through pages. Pagination metadata is included in the response meta.hosts field.

error

string

Error message if the deployment failed on this host.

hostname

string

The hostname of the agent.

status

string

Current deployment status for this specific host.

versions

[object]

List of packages and their versions currently installed on this host.

current_version

string

The current version of the package on the host.

initial_version

string

The initial version of the package on the host before the deployment started.

package_name

string

The name of the package.

target_version

string

The target version that the deployment is attempting to install.

packages

[object]

List of packages to deploy to target hosts. Present only for package upgrade deployments.

name [required]

string

The name of the package to deploy.

version [required]

string

The target version of the package to deploy.

total_hosts

int64

Total number of hosts targeted by this deployment.

id [required]

string

Unique identifier for the deployment.

type [required]

enum

The type of deployment resource. Allowed enum values: deployment

default: deployment

meta

object

Metadata for the list of deployments, including pagination information.

page

object

Pagination details for the list of deployments.

total_count

int64

Total number of deployments available across all pages.

{
  "data": [
    {
      "attributes": {
        "config_operations": [
          {
            "file_op": "merge-patch",
            "file_path": "/datadog.yaml",
            "patch": {
              "apm_config": {
                "enabled": true
              },
              "log_level": "debug",
              "logs_enabled": true
            }
          }
        ],
        "estimated_end_time_unix": 1699999999,
        "filter_query": "env:prod AND service:web",
        "high_level_status": "pending",
        "hosts": [
          {
            "error": "",
            "hostname": "web-server-01.example.com",
            "status": "succeeded",
            "versions": [
              {
                "current_version": "7.51.0",
                "initial_version": "7.51.0",
                "package_name": "datadog-agent",
                "target_version": "7.52.0"
              }
            ]
          }
        ],
        "packages": [
          {
            "name": "datadog-agent",
            "version": "7.52.0"
          }
        ],
        "total_hosts": 42
      },
      "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
      "type": "deployment"
    }
  ],
  "meta": {
    "page": {
      "total_count": 25
    }
  }
}

Bad Request

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Unauthorized

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Forbidden

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Code Example

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

GET https://api.ap1.datadoghq.com/api/unstable/fleet/scheduleshttps://api.ap2.datadoghq.com/api/unstable/fleet/scheduleshttps://api.datadoghq.eu/api/unstable/fleet/scheduleshttps://api.ddog-gov.com/api/unstable/fleet/scheduleshttps://api.datadoghq.com/api/unstable/fleet/scheduleshttps://api.us3.datadoghq.com/api/unstable/fleet/scheduleshttps://api.us5.datadoghq.com/api/unstable/fleet/schedules

Overview

Retrieve a list of all schedules for automated fleet deployments.

Schedules allow you to automate package upgrades by defining maintenance windows and recurrence rules. Each schedule automatically creates deployments based on its configuration.

This endpoint requires the hosts_read permission.

Response

OK

Response containing a list of schedules.

Expand All

Field

Type

Description

data [required]

[object]

Array of schedules.

attributes [required]

object

Attributes of a schedule in the response.

created_at_unix

int64

Unix timestamp (seconds since epoch) when the schedule was created.

created_by

string

User handle of the person who created the schedule.

name

string

Human-readable name for the schedule.

query

string

Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

rule

object

Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

days_of_week [required]

[string]

List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

maintenance_window_duration [required]

int64

Duration of the maintenance window in minutes.

start_maintenance_window [required]

string

Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

timezone [required]

string

Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

status

enum

The status of the schedule.

  • active: The schedule is active and will create deployments according to its recurrence rule.
  • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

updated_at_unix

int64

Unix timestamp (seconds since epoch) when the schedule was last updated.

updated_by

string

User handle of the person who last updated the schedule.

version_to_latest

int64

Number of major versions behind the latest to target for upgrades.

  • 0: Always upgrade to the latest version
  • 1: Upgrade to latest minus 1 major version
  • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

id [required]

string

Unique identifier for the schedule.

type [required]

enum

The type of schedule resource. Allowed enum values: schedule

default: schedule

{
  "data": [
    {
      "attributes": {
        "created_at_unix": 1699999999,
        "created_by": "user@example.com",
        "name": "Weekly Production Agent Updates",
        "query": "env:prod AND service:web",
        "rule": {
          "days_of_week": [
            "Mon",
            "Wed",
            "Fri"
          ],
          "maintenance_window_duration": 1200,
          "start_maintenance_window": "02:00",
          "timezone": "America/New_York"
        },
        "status": "active",
        "updated_at_unix": 1699999999,
        "updated_by": "user@example.com",
        "version_to_latest": 0
      },
      "id": "abc-def-ghi-123",
      "type": "schedule"
    }
  ]
}

Bad Request

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Unauthorized

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Forbidden

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Too many requests

API error response.

Expand All

Field

Type

Description

errors [required]

[string]

A list of errors.

{
  "errors": [
    "Bad Request"
  ]
}

Code Example

                  # Curl command
curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

POST https://api.ap1.datadoghq.com/api/unstable/fleet/deployments/configurehttps://api.ap2.datadoghq.com/api/unstable/fleet/deployments/configurehttps://api.datadoghq.eu/api/unstable/fleet/deployments/configurehttps://api.ddog-gov.com/api/unstable/fleet/deployments/configurehttps://api.datadoghq.com/api/unstable/fleet/deployments/configurehttps://api.us3.datadoghq.com/api/unstable/fleet/deployments/configurehttps://api.us5.datadoghq.com/api/unstable/fleet/deployments/configure

Overview

Create a new deployment to apply configuration changes to a fleet of hosts matching the specified filter query.

This endpoint supports two types of configuration operations:

  • merge-patch: Merges the provided patch data with the existing configuration file, creating the file if it doesn’t exist
  • delete: Removes the specified configuration file from the target hosts

The deployment is created and started automatically. You can specify multiple configuration operations that will be executed in order on each target host. Use the filter query to target specific hosts using the Datadog query syntax.

This endpoint requires all of the following permissions:
  • agent_upgrade_write
  • fleet_policies_write

  • Request

    Body Data (required)

    Request payload containing the deployment details.

    Expand All

    Field

    Type

    Description

    data [required]

    object

    Data for creating a new configuration deployment.

    attributes [required]

    object

    Attributes for creating a new configuration deployment.

    config_operations [required]

    [object]

    Ordered list of configuration file operations to perform on the target hosts.

    file_op [required]

    enum

    Type of file operation to perform on the target configuration file.

    • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
    • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

    file_path [required]

    string

    Absolute path to the target configuration file on the host.

    patch

    object

    Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    {
      "data": {
        "attributes": {
          "config_operations": [
            {
              "file_op": "merge-patch",
              "file_path": "/datadog.yaml",
              "patch": {
                "apm_config": {
                  "enabled": true
                },
                "log_level": "debug",
                "logs_enabled": true
              }
            }
          ],
          "filter_query": "env:prod AND service:web"
        },
        "type": "deployment"
      }
    }

    Response

    CREATED

    Response containing a single deployment.

    Expand All

    Field

    Type

    Description

    data

    object

    A deployment that defines automated configuration changes for a fleet of hosts.

    attributes [required]

    object

    Attributes of a deployment in the response.

    config_operations

    [object]

    Ordered list of configuration file operations to perform on the target hosts.

    file_op [required]

    enum

    Type of file operation to perform on the target configuration file.

    • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
    • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

    file_path [required]

    string

    Absolute path to the target configuration file on the host.

    patch

    object

    Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

    estimated_end_time_unix

    int64

    Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    high_level_status

    string

    Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").

    hosts

    [object]

    Paginated list of hosts in this deployment with their individual statuses. Only included when fetching a single deployment by ID. Use the limit and page query parameters to navigate through pages. Pagination metadata is included in the response meta.hosts field.

    error

    string

    Error message if the deployment failed on this host.

    hostname

    string

    The hostname of the agent.

    status

    string

    Current deployment status for this specific host.

    versions

    [object]

    List of packages and their versions currently installed on this host.

    current_version

    string

    The current version of the package on the host.

    initial_version

    string

    The initial version of the package on the host before the deployment started.

    package_name

    string

    The name of the package.

    target_version

    string

    The target version that the deployment is attempting to install.

    packages

    [object]

    List of packages to deploy to target hosts. Present only for package upgrade deployments.

    name [required]

    string

    The name of the package to deploy.

    version [required]

    string

    The target version of the package to deploy.

    total_hosts

    int64

    Total number of hosts targeted by this deployment.

    id [required]

    string

    Unique identifier for the deployment.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    meta

    object

    Metadata for a single deployment response, including pagination information for hosts.

    hosts

    object

    Pagination details for the list of hosts in a deployment.

    current_page

    int64

    Current page index (zero-based).

    page_size

    int64

    Number of hosts returned per page.

    total_hosts

    int64

    Total number of hosts in this deployment.

    total_pages

    int64

    Total number of pages available.

    {
      "data": {
        "attributes": {
          "config_operations": [
            {
              "file_op": "merge-patch",
              "file_path": "/datadog.yaml",
              "patch": {
                "apm_config": {
                  "enabled": true
                },
                "log_level": "debug",
                "logs_enabled": true
              }
            }
          ],
          "estimated_end_time_unix": 1699999999,
          "filter_query": "env:prod AND service:web",
          "high_level_status": "pending",
          "hosts": [
            {
              "error": "",
              "hostname": "web-server-01.example.com",
              "status": "succeeded",
              "versions": [
                {
                  "current_version": "7.51.0",
                  "initial_version": "7.51.0",
                  "package_name": "datadog-agent",
                  "target_version": "7.52.0"
                }
              ]
            }
          ],
          "packages": [
            {
              "name": "datadog-agent",
              "version": "7.52.0"
            }
          ],
          "total_hosts": 42
        },
        "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
        "type": "deployment"
      },
      "meta": {
        "hosts": {
          "current_page": 0,
          "page_size": 50,
          "total_hosts": 150,
          "total_pages": 3
        }
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      ## Add log integrations for multiple services
    # 
    
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/configure" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "config_operations": [ { "file_op": "merge-patch", "file_path": "/conf.d/postgres.d/logs.yaml", "patch": { "logs": [ { "path": "/var/log/postgres.log", "service": "postgres1", "source": "postgres", "type": "file" } ] } }, { "file_op": "merge-patch", "file_path": "/conf.d/kafka.d/logs.yaml", "patch": { "logs": [ { "path": "/var/log/kafka.log", "service": "kafka1", "source": "kafka", "type": "file" } ] } } ], "filter_query": "env:prod" }, "type": "deployment" } } EOF
    ## Delete a configuration file #
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/configure" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "config_operations": [ { "file_op": "delete", "file_path": "/conf.d/old-integration.yaml" } ], "filter_query": "env:dev" }, "type": "deployment" } } EOF
    ## Enable APM and Logs products #
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/configure" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "config_operations": [ { "file_op": "merge-patch", "file_path": "/datadog.yaml", "patch": { "apm_config": { "enabled": true }, "log_level": "debug", "logs_enabled": true } } ], "filter_query": "env:prod AND service:web" }, "type": "deployment" } } EOF
    ## Set log level to info #
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/configure" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "config_operations": [ { "file_op": "merge-patch", "file_path": "/datadog.yaml", "patch": { "log_level": "info" } } ], "filter_query": "env:staging" }, "type": "deployment" } } EOF

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    POST https://api.ap1.datadoghq.com/api/unstable/fleet/scheduleshttps://api.ap2.datadoghq.com/api/unstable/fleet/scheduleshttps://api.datadoghq.eu/api/unstable/fleet/scheduleshttps://api.ddog-gov.com/api/unstable/fleet/scheduleshttps://api.datadoghq.com/api/unstable/fleet/scheduleshttps://api.us3.datadoghq.com/api/unstable/fleet/scheduleshttps://api.us5.datadoghq.com/api/unstable/fleet/schedules

    Overview

    Create a new schedule for automated package upgrades.

    Schedules define when and how often to automatically deploy package upgrades to a fleet of hosts. Each schedule includes:

    • A filter query to select target hosts
    • A recurrence rule defining maintenance windows
    • A version strategy (e.g., always latest, or N versions behind latest)

    When the schedule triggers during a maintenance window, it automatically creates a deployment that upgrades the Datadog Agent to the specified version on all matching hosts.

    This endpoint requires the agent_upgrade_write permission.

    Request

    Body Data (required)

    Request payload containing the schedule details.

    Expand All

    Field

    Type

    Description

    data [required]

    object

    Data for creating a new schedule.

    attributes [required]

    object

    Attributes for creating a new schedule.

    name [required]

    string

    Human-readable name for the schedule.

    query [required]

    string

    Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

    rule [required]

    object

    Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

    days_of_week [required]

    [string]

    List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

    maintenance_window_duration [required]

    int64

    Duration of the maintenance window in minutes.

    start_maintenance_window [required]

    string

    Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

    timezone [required]

    string

    Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

    status

    enum

    The status of the schedule.

    • active: The schedule is active and will create deployments according to its recurrence rule.
    • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

    version_to_latest

    int64

    Number of major versions behind the latest to target for upgrades.

    • 0: Always upgrade to the latest version (default)
    • 1: Upgrade to latest minus 1 major version
    • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

    type [required]

    enum

    The type of schedule resource. Allowed enum values: schedule

    default: schedule

    {
      "data": {
        "attributes": {
          "name": "Weekly Production Agent Updates",
          "query": "env:prod AND service:web",
          "rule": {
            "days_of_week": [
              "Mon",
              "Wed",
              "Fri"
            ],
            "maintenance_window_duration": 1200,
            "start_maintenance_window": "02:00",
            "timezone": "America/New_York"
          },
          "status": "active",
          "version_to_latest": 0
        },
        "type": "schedule"
      }
    }

    Response

    CREATED

    Response containing a single schedule.

    Expand All

    Field

    Type

    Description

    data

    object

    A schedule that automatically creates deployments based on a recurrence rule.

    attributes [required]

    object

    Attributes of a schedule in the response.

    created_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was created.

    created_by

    string

    User handle of the person who created the schedule.

    name

    string

    Human-readable name for the schedule.

    query

    string

    Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

    rule

    object

    Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

    days_of_week [required]

    [string]

    List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

    maintenance_window_duration [required]

    int64

    Duration of the maintenance window in minutes.

    start_maintenance_window [required]

    string

    Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

    timezone [required]

    string

    Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

    status

    enum

    The status of the schedule.

    • active: The schedule is active and will create deployments according to its recurrence rule.
    • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

    updated_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was last updated.

    updated_by

    string

    User handle of the person who last updated the schedule.

    version_to_latest

    int64

    Number of major versions behind the latest to target for upgrades.

    • 0: Always upgrade to the latest version
    • 1: Upgrade to latest minus 1 major version
    • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

    id [required]

    string

    Unique identifier for the schedule.

    type [required]

    enum

    The type of schedule resource. Allowed enum values: schedule

    default: schedule

    {
      "data": {
        "attributes": {
          "created_at_unix": 1699999999,
          "created_by": "user@example.com",
          "name": "Weekly Production Agent Updates",
          "query": "env:prod AND service:web",
          "rule": {
            "days_of_week": [
              "Mon",
              "Wed",
              "Fri"
            ],
            "maintenance_window_duration": 1200,
            "start_maintenance_window": "02:00",
            "timezone": "America/New_York"
          },
          "status": "active",
          "updated_at_unix": 1699999999,
          "updated_by": "user@example.com",
          "version_to_latest": 0
        },
        "id": "abc-def-ghi-123",
        "type": "schedule"
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      ## Conservative staging updates (N-1 version)
    # 
    
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "name": "Staging Environment - Conservative Updates", "query": "env:staging", "rule": { "days_of_week": [ "Fri" ], "maintenance_window_duration": 240, "start_maintenance_window": "22:00", "timezone": "UTC" }, "status": "active", "version_to_latest": 1 }, "type": "schedule" } } EOF
    ## Weekly production agent updates #
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "name": "Weekly Production Agent Updates", "query": "env:prod", "rule": { "days_of_week": [ "Mon", "Wed" ], "maintenance_window_duration": 180, "start_maintenance_window": "02:00", "timezone": "America/New_York" }, "status": "active", "version_to_latest": 0 }, "type": "schedule" } } EOF

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    GET https://api.ap1.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.ap2.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.eu/api/unstable/fleet/schedules/{id}https://api.ddog-gov.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us3.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us5.datadoghq.com/api/unstable/fleet/schedules/{id}

    Overview

    Retrieve detailed information about a specific schedule using its unique identifier.

    This endpoint returns comprehensive information about a schedule, including:

    • Schedule metadata (ID, name, creation/update timestamps)
    • Filter query for selecting target hosts
    • Recurrence rule defining when deployments are triggered
    • Version strategy for package upgrades
    • Current status (active or inactive)
    This endpoint requires the hosts_read permission.

    Arguments

    Path Parameters

    Name

    Type

    Description

    id [required]

    string

    The unique identifier of the schedule to retrieve.

    Response

    OK

    Response containing a single schedule.

    Expand All

    Field

    Type

    Description

    data

    object

    A schedule that automatically creates deployments based on a recurrence rule.

    attributes [required]

    object

    Attributes of a schedule in the response.

    created_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was created.

    created_by

    string

    User handle of the person who created the schedule.

    name

    string

    Human-readable name for the schedule.

    query

    string

    Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

    rule

    object

    Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

    days_of_week [required]

    [string]

    List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

    maintenance_window_duration [required]

    int64

    Duration of the maintenance window in minutes.

    start_maintenance_window [required]

    string

    Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

    timezone [required]

    string

    Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

    status

    enum

    The status of the schedule.

    • active: The schedule is active and will create deployments according to its recurrence rule.
    • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

    updated_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was last updated.

    updated_by

    string

    User handle of the person who last updated the schedule.

    version_to_latest

    int64

    Number of major versions behind the latest to target for upgrades.

    • 0: Always upgrade to the latest version
    • 1: Upgrade to latest minus 1 major version
    • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

    id [required]

    string

    Unique identifier for the schedule.

    type [required]

    enum

    The type of schedule resource. Allowed enum values: schedule

    default: schedule

    {
      "data": {
        "attributes": {
          "created_at_unix": 1699999999,
          "created_by": "user@example.com",
          "name": "Weekly Production Agent Updates",
          "query": "env:prod AND service:web",
          "rule": {
            "days_of_week": [
              "Mon",
              "Wed",
              "Fri"
            ],
            "maintenance_window_duration": 1200,
            "start_maintenance_window": "02:00",
            "timezone": "America/New_York"
          },
          "status": "active",
          "updated_at_unix": 1699999999,
          "updated_by": "user@example.com",
          "version_to_latest": 0
        },
        "id": "abc-def-ghi-123",
        "type": "schedule"
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    POST https://api.ap1.datadoghq.com/api/unstable/fleet/deployments/upgradehttps://api.ap2.datadoghq.com/api/unstable/fleet/deployments/upgradehttps://api.datadoghq.eu/api/unstable/fleet/deployments/upgradehttps://api.ddog-gov.com/api/unstable/fleet/deployments/upgradehttps://api.datadoghq.com/api/unstable/fleet/deployments/upgradehttps://api.us3.datadoghq.com/api/unstable/fleet/deployments/upgradehttps://api.us5.datadoghq.com/api/unstable/fleet/deployments/upgrade

    Overview

    Create and immediately start a new package upgrade on hosts matching the specified filter query.

    This endpoint allows you to upgrade the Datadog Agent to a specific version on hosts matching the specified filter query.

    The deployment is created and started automatically. The system will:

    1. Identify all hosts matching the filter query
    2. Validate that the specified version is available
    3. Begin rolling out the package upgrade to the target hosts
    This endpoint requires all of the following permissions:
  • agent_upgrade_write
  • fleet_policies_write

  • Request

    Body Data (required)

    Request payload containing the package upgrade details.

    Expand All

    Field

    Type

    Description

    data [required]

    object

    Data for creating a new package upgrade deployment.

    attributes [required]

    object

    Attributes for creating a new package upgrade deployment.

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    target_packages [required]

    [object]

    List of packages and their target versions to deploy to the selected hosts.

    name [required]

    string

    The name of the package to deploy.

    version [required]

    string

    The target version of the package to deploy.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    {
      "data": {
        "attributes": {
          "filter_query": "env:prod AND service:web",
          "target_packages": [
            {
              "name": "datadog-agent",
              "version": "7.52.0"
            }
          ]
        },
        "type": "deployment"
      }
    }

    Response

    CREATED

    Response containing a single deployment.

    Expand All

    Field

    Type

    Description

    data

    object

    A deployment that defines automated configuration changes for a fleet of hosts.

    attributes [required]

    object

    Attributes of a deployment in the response.

    config_operations

    [object]

    Ordered list of configuration file operations to perform on the target hosts.

    file_op [required]

    enum

    Type of file operation to perform on the target configuration file.

    • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
    • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

    file_path [required]

    string

    Absolute path to the target configuration file on the host.

    patch

    object

    Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

    estimated_end_time_unix

    int64

    Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    high_level_status

    string

    Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").

    hosts

    [object]

    Paginated list of hosts in this deployment with their individual statuses. Only included when fetching a single deployment by ID. Use the limit and page query parameters to navigate through pages. Pagination metadata is included in the response meta.hosts field.

    error

    string

    Error message if the deployment failed on this host.

    hostname

    string

    The hostname of the agent.

    status

    string

    Current deployment status for this specific host.

    versions

    [object]

    List of packages and their versions currently installed on this host.

    current_version

    string

    The current version of the package on the host.

    initial_version

    string

    The initial version of the package on the host before the deployment started.

    package_name

    string

    The name of the package.

    target_version

    string

    The target version that the deployment is attempting to install.

    packages

    [object]

    List of packages to deploy to target hosts. Present only for package upgrade deployments.

    name [required]

    string

    The name of the package to deploy.

    version [required]

    string

    The target version of the package to deploy.

    total_hosts

    int64

    Total number of hosts targeted by this deployment.

    id [required]

    string

    Unique identifier for the deployment.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    meta

    object

    Metadata for a single deployment response, including pagination information for hosts.

    hosts

    object

    Pagination details for the list of hosts in a deployment.

    current_page

    int64

    Current page index (zero-based).

    page_size

    int64

    Number of hosts returned per page.

    total_hosts

    int64

    Total number of hosts in this deployment.

    total_pages

    int64

    Total number of pages available.

    {
      "data": {
        "attributes": {
          "config_operations": [
            {
              "file_op": "merge-patch",
              "file_path": "/datadog.yaml",
              "patch": {
                "apm_config": {
                  "enabled": true
                },
                "log_level": "debug",
                "logs_enabled": true
              }
            }
          ],
          "estimated_end_time_unix": 1699999999,
          "filter_query": "env:prod AND service:web",
          "high_level_status": "pending",
          "hosts": [
            {
              "error": "",
              "hostname": "web-server-01.example.com",
              "status": "succeeded",
              "versions": [
                {
                  "current_version": "7.51.0",
                  "initial_version": "7.51.0",
                  "package_name": "datadog-agent",
                  "target_version": "7.52.0"
                }
              ]
            }
          ],
          "packages": [
            {
              "name": "datadog-agent",
              "version": "7.52.0"
            }
          ],
          "total_hosts": 42
        },
        "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
        "type": "deployment"
      },
      "meta": {
        "hosts": {
          "current_page": 0,
          "page_size": 50,
          "total_hosts": 150,
          "total_pages": 3
        }
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      ## Upgrade Datadog Agent to version 7.52.0
    # 
    
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/upgrade" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "filter_query": "env:prod AND service:web", "target_packages": [ { "name": "datadog-agent", "version": "7.52.0" } ] }, "type": "deployment" } } EOF
    ## Upgrade multiple packages #
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/upgrade" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "filter_query": "env:staging", "target_packages": [ { "name": "datadog-agent", "version": "7.52.0-1" }, { "name": "datadog-apm-inject", "version": "0.10.0" } ] }, "type": "deployment" } } EOF

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    GET https://api.ap1.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}https://api.ap2.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}https://api.datadoghq.eu/api/unstable/fleet/deployments/{deployment_id}https://api.ddog-gov.com/api/unstable/fleet/deployments/{deployment_id}https://api.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}https://api.us3.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}https://api.us5.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}

    Overview

    Retrieve detailed information about a specific deployment using its unique identifier. This endpoint returns comprehensive information about a deployment, including:

    • Deployment metadata (ID, type, filter query)
    • Total number of target hosts
    • Current high-level status (pending, running, succeeded, failed)
    • Estimated completion time
    • Configuration operations that were or are being applied
    • Detailed host list: A paginated array of hosts included in this deployment with individual host status, current package versions, and any errors

    The host list provides visibility into the per-host execution status, allowing you to:

    • Monitor which hosts have completed successfully
    • Identify hosts that are still in progress
    • Investigate failures on specific hosts
    • View current package versions installed on each host (including initial, target, and current versions for each package)

    Pagination: Use the limit and page query parameters to paginate through hosts. The response includes pagination metadata in the meta.hosts field with information about the current page, total pages, and total host count. The default page size is 50 hosts, with a maximum of 100.

    This endpoint requires the hosts_read permission.

    Arguments

    Path Parameters

    Name

    Type

    Description

    deployment_id [required]

    string

    The unique identifier of the deployment to retrieve.

    Query Strings

    Name

    Type

    Description

    limit

    integer

    Maximum number of hosts to return per page. Default is 50, maximum is 100.

    page

    integer

    Page index for pagination (zero-based). Use this to retrieve subsequent pages of hosts.

    Response

    OK

    Response containing a single deployment.

    Expand All

    Field

    Type

    Description

    data

    object

    A deployment that defines automated configuration changes for a fleet of hosts.

    attributes [required]

    object

    Attributes of a deployment in the response.

    config_operations

    [object]

    Ordered list of configuration file operations to perform on the target hosts.

    file_op [required]

    enum

    Type of file operation to perform on the target configuration file.

    • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
    • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

    file_path [required]

    string

    Absolute path to the target configuration file on the host.

    patch

    object

    Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

    estimated_end_time_unix

    int64

    Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    high_level_status

    string

    Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").

    hosts

    [object]

    Paginated list of hosts in this deployment with their individual statuses. Only included when fetching a single deployment by ID. Use the limit and page query parameters to navigate through pages. Pagination metadata is included in the response meta.hosts field.

    error

    string

    Error message if the deployment failed on this host.

    hostname

    string

    The hostname of the agent.

    status

    string

    Current deployment status for this specific host.

    versions

    [object]

    List of packages and their versions currently installed on this host.

    current_version

    string

    The current version of the package on the host.

    initial_version

    string

    The initial version of the package on the host before the deployment started.

    package_name

    string

    The name of the package.

    target_version

    string

    The target version that the deployment is attempting to install.

    packages

    [object]

    List of packages to deploy to target hosts. Present only for package upgrade deployments.

    name [required]

    string

    The name of the package to deploy.

    version [required]

    string

    The target version of the package to deploy.

    total_hosts

    int64

    Total number of hosts targeted by this deployment.

    id [required]

    string

    Unique identifier for the deployment.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    meta

    object

    Metadata for a single deployment response, including pagination information for hosts.

    hosts

    object

    Pagination details for the list of hosts in a deployment.

    current_page

    int64

    Current page index (zero-based).

    page_size

    int64

    Number of hosts returned per page.

    total_hosts

    int64

    Total number of hosts in this deployment.

    total_pages

    int64

    Total number of pages available.

    {
      "data": {
        "attributes": {
          "config_operations": [
            {
              "file_op": "merge-patch",
              "file_path": "/datadog.yaml",
              "patch": {
                "apm_config": {
                  "enabled": true
                },
                "log_level": "debug",
                "logs_enabled": true
              }
            }
          ],
          "estimated_end_time_unix": 1699999999,
          "filter_query": "env:prod AND service:web",
          "high_level_status": "pending",
          "hosts": [
            {
              "error": "",
              "hostname": "web-server-01.example.com",
              "status": "succeeded",
              "versions": [
                {
                  "current_version": "7.51.0",
                  "initial_version": "7.51.0",
                  "package_name": "datadog-agent",
                  "target_version": "7.52.0"
                }
              ]
            }
          ],
          "packages": [
            {
              "name": "datadog-agent",
              "version": "7.52.0"
            }
          ],
          "total_hosts": 42
        },
        "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
        "type": "deployment"
      },
      "meta": {
        "hosts": {
          "current_page": 0,
          "page_size": 50,
          "total_hosts": 150,
          "total_pages": 3
        }
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      # Path parameters
    export deployment_id="abc-def-ghi"
    # Curl command
    curl -X GET "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/${deployment_id}" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    PATCH https://api.ap1.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.ap2.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.eu/api/unstable/fleet/schedules/{id}https://api.ddog-gov.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us3.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us5.datadoghq.com/api/unstable/fleet/schedules/{id}

    Overview

    Partially update a schedule by providing only the fields you want to change.

    This endpoint allows you to modify specific attributes of a schedule without affecting other fields. Common use cases include:

    • Changing the schedule status between active and inactive
    • Updating the maintenance window times
    • Modifying the filter query to target different hosts
    • Adjusting the version strategy

    Only include the fields you want to update in the request body. All fields are optional in a PATCH request.

    This endpoint requires the agent_upgrade_write permission.

    Arguments

    Path Parameters

    Name

    Type

    Description

    id [required]

    string

    The unique identifier of the schedule to update.

    Request

    Body Data (required)

    Request payload containing the fields to update.

    Expand All

    Field

    Type

    Description

    data [required]

    object

    Data for partially updating a schedule.

    attributes

    object

    Attributes for partially updating a schedule. All fields are optional.

    name

    string

    Human-readable name for the schedule.

    query

    string

    Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

    rule

    object

    Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

    days_of_week [required]

    [string]

    List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

    maintenance_window_duration [required]

    int64

    Duration of the maintenance window in minutes.

    start_maintenance_window [required]

    string

    Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

    timezone [required]

    string

    Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

    status

    enum

    The status of the schedule.

    • active: The schedule is active and will create deployments according to its recurrence rule.
    • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

    version_to_latest

    int64

    Number of major versions behind the latest to target for upgrades.

    • 0: Always upgrade to the latest version
    • 1: Upgrade to latest minus 1 major version
    • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

    type [required]

    enum

    The type of schedule resource. Allowed enum values: schedule

    default: schedule

    {
      "data": {
        "attributes": {
          "name": "Weekly Production Agent Updates",
          "query": "env:prod AND service:web",
          "rule": {
            "days_of_week": [
              "Mon",
              "Wed",
              "Fri"
            ],
            "maintenance_window_duration": 1200,
            "start_maintenance_window": "02:00",
            "timezone": "America/New_York"
          },
          "status": "active",
          "version_to_latest": 0
        },
        "type": "schedule"
      }
    }

    Response

    OK

    Response containing a single schedule.

    Expand All

    Field

    Type

    Description

    data

    object

    A schedule that automatically creates deployments based on a recurrence rule.

    attributes [required]

    object

    Attributes of a schedule in the response.

    created_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was created.

    created_by

    string

    User handle of the person who created the schedule.

    name

    string

    Human-readable name for the schedule.

    query

    string

    Query used to filter and select target hosts for scheduled deployments. Uses the Datadog query syntax.

    rule

    object

    Defines the recurrence pattern for the schedule. Specifies when deployments should be automatically triggered based on maintenance windows.

    days_of_week [required]

    [string]

    List of days of the week when the schedule should trigger. Valid values are: "Mon", "Tue", "Wed", "Thu", "Fri", "Sat", "Sun".

    maintenance_window_duration [required]

    int64

    Duration of the maintenance window in minutes.

    start_maintenance_window [required]

    string

    Start time of the maintenance window in 24-hour clock format (HH:MM). Deployments will be triggered at this time on the specified days.

    timezone [required]

    string

    Timezone for the schedule in IANA Time Zone Database format (e.g., "America/New_York", "UTC").

    status

    enum

    The status of the schedule.

    • active: The schedule is active and will create deployments according to its recurrence rule.
    • inactive: The schedule is inactive and will not create any deployments. Allowed enum values: active,inactive

    updated_at_unix

    int64

    Unix timestamp (seconds since epoch) when the schedule was last updated.

    updated_by

    string

    User handle of the person who last updated the schedule.

    version_to_latest

    int64

    Number of major versions behind the latest to target for upgrades.

    • 0: Always upgrade to the latest version
    • 1: Upgrade to latest minus 1 major version
    • 2: Upgrade to latest minus 2 major versions Maximum value is 2.

    id [required]

    string

    Unique identifier for the schedule.

    type [required]

    enum

    The type of schedule resource. Allowed enum values: schedule

    default: schedule

    {
      "data": {
        "attributes": {
          "created_at_unix": 1699999999,
          "created_by": "user@example.com",
          "name": "Weekly Production Agent Updates",
          "query": "env:prod AND service:web",
          "rule": {
            "days_of_week": [
              "Mon",
              "Wed",
              "Fri"
            ],
            "maintenance_window_duration": 1200,
            "start_maintenance_window": "02:00",
            "timezone": "America/New_York"
          },
          "status": "active",
          "updated_at_unix": 1699999999,
          "updated_by": "user@example.com",
          "version_to_latest": 0
        },
        "id": "abc-def-ghi-123",
        "type": "schedule"
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      ## Change maintenance window time
    # 
    
    # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X PATCH "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "rule": { "days_of_week": [ "Mon", "Wed", "Fri" ], "maintenance_window_duration": 240, "start_maintenance_window": "03:00", "timezone": "America/New_York" } }, "type": "schedule" } } EOF
    ## Pause a schedule #
    # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X PATCH "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "status": "inactive" }, "type": "schedule" } } EOF
    ## Update target hosts query #
    # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X PATCH "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}" \ -H "Accept: application/json" \ -H "Content-Type: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}" \ -d @- << EOF { "data": { "attributes": { "query": "env:prod AND service:api" }, "type": "schedule" } } EOF

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    POST https://api.ap1.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.ap2.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.datadoghq.eu/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.ddog-gov.com/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.us3.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}/cancelhttps://api.us5.datadoghq.com/api/unstable/fleet/deployments/{deployment_id}/cancel

    Overview

    Cancel an active deployment and stop all pending operations. When you cancel a deployment:

    • All pending operations on hosts that haven’t started yet are stopped
    • Operations currently in progress on hosts may complete or be interrupted, depending on their current state
    • Configuration changes or package upgrades already applied to hosts are not rolled back

    After cancellation, you can view the final state of the deployment using the GET endpoint to see which hosts were successfully updated before the cancellation.

    This endpoint requires all of the following permissions:
  • agent_upgrade_write
  • fleet_policies_write

  • Arguments

    Path Parameters

    Name

    Type

    Description

    deployment_id [required]

    string

    The unique identifier of the deployment to cancel.

    Response

    Deployment successfully canceled.

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      # Path parameters
    export deployment_id="abc-def-ghi"
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/deployments/${deployment_id}/cancel" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    DELETE https://api.ap1.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.ap2.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.eu/api/unstable/fleet/schedules/{id}https://api.ddog-gov.com/api/unstable/fleet/schedules/{id}https://api.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us3.datadoghq.com/api/unstable/fleet/schedules/{id}https://api.us5.datadoghq.com/api/unstable/fleet/schedules/{id}

    Overview

    Delete a schedule permanently.

    When you delete a schedule:

    • The schedule is permanently removed and will no longer create deployments
    • Any deployments already created by this schedule are not affected
    • This action cannot be undone

    If you want to temporarily stop a schedule from creating deployments, consider updating its status to “inactive” instead of deleting it.

    This endpoint requires the agent_upgrade_write permission.

    Arguments

    Path Parameters

    Name

    Type

    Description

    id [required]

    string

    The unique identifier of the schedule to delete.

    Response

    Schedule successfully deleted.

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X DELETE "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"

    This endpoint is in Preview and may introduce breaking changes. If you have any feedback, contact Datadog support.

    POST https://api.ap1.datadoghq.com/api/unstable/fleet/schedules/{id}/triggerhttps://api.ap2.datadoghq.com/api/unstable/fleet/schedules/{id}/triggerhttps://api.datadoghq.eu/api/unstable/fleet/schedules/{id}/triggerhttps://api.ddog-gov.com/api/unstable/fleet/schedules/{id}/triggerhttps://api.datadoghq.com/api/unstable/fleet/schedules/{id}/triggerhttps://api.us3.datadoghq.com/api/unstable/fleet/schedules/{id}/triggerhttps://api.us5.datadoghq.com/api/unstable/fleet/schedules/{id}/trigger

    Overview

    Manually trigger a schedule to immediately create and start a deployment.

    This endpoint allows you to manually initiate a deployment using the schedule’s configuration, without waiting for the next scheduled maintenance window. This is useful for:

    • Testing a schedule before it runs automatically
    • Performing an emergency update outside the regular maintenance window
    • Creating an ad-hoc deployment with the same settings as a schedule

    The deployment is created immediately with:

    • The same filter query as the schedule
    • The package version determined by the schedule’s version strategy
    • All matching hosts as targets

    The manually triggered deployment is independent of the schedule and does not affect the schedule’s normal recurrence pattern.

    This endpoint requires the agent_upgrade_write permission.

    Arguments

    Path Parameters

    Name

    Type

    Description

    id [required]

    string

    The unique identifier of the schedule to trigger.

    Response

    CREATED - Deployment successfully created and started.

    Response containing a single deployment.

    Expand All

    Field

    Type

    Description

    data

    object

    A deployment that defines automated configuration changes for a fleet of hosts.

    attributes [required]

    object

    Attributes of a deployment in the response.

    config_operations

    [object]

    Ordered list of configuration file operations to perform on the target hosts.

    file_op [required]

    enum

    Type of file operation to perform on the target configuration file.

    • merge-patch: Merges the provided patch data with the existing configuration file. Creates the file if it doesn't exist.
    • delete: Removes the specified configuration file from the target hosts. Allowed enum values: merge-patch,delete

    file_path [required]

    string

    Absolute path to the target configuration file on the host.

    patch

    object

    Patch data in JSON format to apply to the configuration file. When using merge-patch, this object is merged with the existing configuration, allowing you to add, update, or override specific fields without replacing the entire file. The structure must match the target configuration file format (for example, YAML structure for Datadog Agent config). Not applicable when using the delete operation.

    estimated_end_time_unix

    int64

    Estimated completion time of the deployment as a Unix timestamp (seconds since epoch).

    filter_query

    string

    Query used to filter and select target hosts for the deployment. Uses the Datadog query syntax.

    high_level_status

    string

    Current high-level status of the deployment (for example, "pending", "running", "completed", "failed").

    hosts

    [object]

    Paginated list of hosts in this deployment with their individual statuses. Only included when fetching a single deployment by ID. Use the limit and page query parameters to navigate through pages. Pagination metadata is included in the response meta.hosts field.

    error

    string

    Error message if the deployment failed on this host.

    hostname

    string

    The hostname of the agent.

    status

    string

    Current deployment status for this specific host.

    versions

    [object]

    List of packages and their versions currently installed on this host.

    current_version

    string

    The current version of the package on the host.

    initial_version

    string

    The initial version of the package on the host before the deployment started.

    package_name

    string

    The name of the package.

    target_version

    string

    The target version that the deployment is attempting to install.

    packages

    [object]

    List of packages to deploy to target hosts. Present only for package upgrade deployments.

    name [required]

    string

    The name of the package to deploy.

    version [required]

    string

    The target version of the package to deploy.

    total_hosts

    int64

    Total number of hosts targeted by this deployment.

    id [required]

    string

    Unique identifier for the deployment.

    type [required]

    enum

    The type of deployment resource. Allowed enum values: deployment

    default: deployment

    meta

    object

    Metadata for a single deployment response, including pagination information for hosts.

    hosts

    object

    Pagination details for the list of hosts in a deployment.

    current_page

    int64

    Current page index (zero-based).

    page_size

    int64

    Number of hosts returned per page.

    total_hosts

    int64

    Total number of hosts in this deployment.

    total_pages

    int64

    Total number of pages available.

    {
      "data": {
        "attributes": {
          "config_operations": [
            {
              "file_op": "merge-patch",
              "file_path": "/datadog.yaml",
              "patch": {
                "apm_config": {
                  "enabled": true
                },
                "log_level": "debug",
                "logs_enabled": true
              }
            }
          ],
          "estimated_end_time_unix": 1699999999,
          "filter_query": "env:prod AND service:web",
          "high_level_status": "pending",
          "hosts": [
            {
              "error": "",
              "hostname": "web-server-01.example.com",
              "status": "succeeded",
              "versions": [
                {
                  "current_version": "7.51.0",
                  "initial_version": "7.51.0",
                  "package_name": "datadog-agent",
                  "target_version": "7.52.0"
                }
              ]
            }
          ],
          "packages": [
            {
              "name": "datadog-agent",
              "version": "7.52.0"
            }
          ],
          "total_hosts": 42
        },
        "id": "aeadc05e-98a8-11ec-ac2c-da7ad0900001",
        "type": "deployment"
      },
      "meta": {
        "hosts": {
          "current_page": 0,
          "page_size": 50,
          "total_hosts": 150,
          "total_pages": 3
        }
      }
    }

    Bad Request

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Unauthorized

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Forbidden

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Not Found

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Too many requests

    API error response.

    Expand All

    Field

    Type

    Description

    errors [required]

    [string]

    A list of errors.

    {
      "errors": [
        "Bad Request"
      ]
    }

    Code Example

                      # Path parameters
    export id="abc-def-ghi-123"
    # Curl command
    curl -X POST "https://api.ap1.datadoghq.com"https://api.ap2.datadoghq.com"https://api.datadoghq.eu"https://api.ddog-gov.com"https://api.datadoghq.com"https://api.us3.datadoghq.com"https://api.us5.datadoghq.com/api/unstable/fleet/schedules/${id}/trigger" \ -H "Accept: application/json" \ -H "DD-API-KEY: ${DD_API_KEY}" \ -H "DD-APPLICATION-KEY: ${DD_APP_KEY}"