> ## Documentation Index
> Fetch the complete documentation index at: https://nango.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Datadog

> Integrate your application with the Datadog API

## 🚀 Quickstart

Connect to Datadog with Nango and see data flow in 2 minutes.

<Steps>
  <Step title="Create the integration">
    In Nango ([free signup](https://app.nango.dev)), go to [Integrations](https://app.nango.dev/dev/integrations) -> *Configure New Integration* -> *Datadog*.
  </Step>

  <Step title="Authorize Datadog">
    Go to [Connections](https://app.nango.dev/dev/connections) -> *Add Test Connection* -> *Connect*, then enter your API Key, Site Parameter, and Application Key. Later, you'll let your users do the same directly from your app.
  </Step>

  <Step title="Call the Datadog API">
    Let's make your first request to the Datadog API (validate your API key). Replace the placeholders below with your [Environment API key](/docs/reference/backend/http-api/api-keys), [integration ID](https://app.nango.dev/dev/integrations), and [connection ID](https://app.nango.dev/dev/connections):

    <Tabs>
      <Tab title="cURL">
        ```bash theme={null}
        curl "https://api.nango.dev/proxy/api/v1/validate" \
          -H "Authorization: Bearer <NANGO-API-KEY>" \
          -H "Provider-Config-Key: <INTEGRATION-ID>" \
          -H "Connection-Id: <CONNECTION-ID>"
        ```
      </Tab>

      <Tab title="Node">
        Install Nango's backend SDK with `npm i @nangohq/node`. Then run:

        ```typescript theme={null}
        import { Nango } from '@nangohq/node';

        const nango = new Nango({ apiKey: '<NANGO-API-KEY>' });

        const res = await nango.get({
            endpoint: '/api/v1/validate',
            providerConfigKey: '<INTEGRATION-ID>',
            connectionId: '<CONNECTION-ID>'
        });

        console.log(res.data);
        ```
      </Tab>
    </Tabs>

    Or fetch credentials with the [Node SDK](/docs/reference/sdks/node#get-a-connection-with-credentials) or [API](/docs/reference/api/connection/get).

    ✅ You're connected! Check the [Logs](https://app.nango.dev/dev/logs) tab in Nango to inspect requests.
  </Step>

  <Step title="Implement Nango in your app">
    Follow our [Auth implementation guide](/docs/guides/primitives/auth) to integrate Nango in your app.
  </Step>
</Steps>

## 📚 Datadog Integration Guides

Nango-maintained guides for common use cases.

* [How to obtain your Datadog API & Application Keys](/docs/api-integrations/datadog/connect)\
  Find your Site Parameter, generate an API Key, and create an Application Key in Datadog

Official docs: [Datadog API documentation](https://docs.datadoghq.com/api/latest/)

## 🧩 Pre-built syncs & actions for Datadog

Enable them in your dashboard. Extend and customize to fit your needs.

### Others

| Function name                            | Description                                                                                                                                                         | Type                                           | Source code                                                                                                                                    |
| ---------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------- |
| `add-host-tags`                          | Add tags to a host                                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/add-host-tags.ts)                          |
| `add-team-membership`                    | Add a user to a team with a given role                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/add-team-membership.ts)                    |
| `cancel-downtime`                        | Cancel a scheduled or active downtime.                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/cancel-downtime.ts)                        |
| `create-api-key`                         | Create a new API key for this account.                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-api-key.ts)                         |
| `create-case-project`                    | Create a new case-management project.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-case-project.ts)                    |
| `create-case`                            | Create a new case within a project.                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-case.ts)                            |
| `create-dashboard`                       | Create a new dashboard with a widget layout.                                                                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-dashboard.ts)                       |
| `create-downtime`                        | Schedule a downtime (maintenance window) that suppresses monitor notifications for a scope/time range.                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-downtime.ts)                        |
| `create-escalation-policy`               | Create a new On-Call escalation policy                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-escalation-policy.ts)               |
| `create-incident`                        | Create a new incident.                                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-incident.ts)                        |
| `create-monitor`                         | Create a new monitor                                                                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-monitor.ts)                         |
| `create-notebook`                        | Create a new notebook                                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-notebook.ts)                        |
| `create-on-call-page`                    | Trigger a new On-Call page (alert a specific person or escalation policy immediately, independent of a monitor firing).                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-on-call-page.ts)                    |
| `create-on-call-schedule`                | Create a new On-Call rotation schedule                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-on-call-schedule.ts)                |
| `create-personal-access-token`           | Create a new personal access token.                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-personal-access-token.ts)           |
| `create-role`                            | Create a new role.                                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-role.ts)                            |
| `create-rum-application`                 | Create a new RUM application (registers a client\_token for browser/mobile SDK instrumentation).                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-rum-application.ts)                 |
| `create-sensitive-data-scanner-group`    | Create a new scanning group (a named collection of scanning rules with a shared filter)                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-sensitive-data-scanner-group.ts)    |
| `create-sensitive-data-scanner-rule`     | Create a new scanning rule within a group (a pattern to detect and optionally redact).                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-sensitive-data-scanner-rule.ts)     |
| `create-service-account-access-token`    | Create an OAuth-style access token for a service account.                                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-service-account-access-token.ts)    |
| `create-service-account-application-key` | Create an application key owned by a service account.                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-service-account-application-key.ts) |
| `create-service-account`                 | Create a new service account (a non-human user identity for machine-to-machine API access).                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-service-account.ts)                 |
| `create-service-definition`              | Create or update a service definition (also used for updates — same endpoint upserts by service name).                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-service-definition.ts)              |
| `create-slo-correction`                  | Create a new SLO correction window.                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-slo-correction.ts)                  |
| `create-slo`                             | Create a new metric-based or monitor-based Service Level Objective.                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-slo.ts)                             |
| `create-synthetic-api-test`              | Create a new Synthetic API (HTTP) test                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-synthetic-api-test.ts)              |
| `create-synthetic-global-variable`       | Create a reusable global variable for use across Synthetic tests.                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-synthetic-global-variable.ts)       |
| `create-team`                            | Create a new team.                                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-team.ts)                            |
| `create-user`                            | Create a new user (invited by email) in this account.                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/create-user.ts)                            |
| `delete-api-key`                         | Delete an API key                                                                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-api-key.ts)                         |
| `delete-dashboard`                       | Delete a dashboard.                                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-dashboard.ts)                       |
| `delete-host-tags`                       | Remove all tags from a host                                                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-host-tags.ts)                       |
| `delete-monitor`                         | Delete a monitor.                                                                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-monitor.ts)                         |
| `delete-notebook`                        | Delete a notebook.                                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-notebook.ts)                        |
| `delete-restriction-policy`              | Remove the restriction policy from a resource (reverting to default account-wide access rules).                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-restriction-policy.ts)              |
| `delete-role`                            | Delete a role.                                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-role.ts)                            |
| `delete-rum-application`                 | Delete a RUM application.                                                                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-rum-application.ts)                 |
| `delete-sensitive-data-scanner-rule`     | Delete a scanning rule.                                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-sensitive-data-scanner-rule.ts)     |
| `delete-slo-correction`                  | Permanently delete an SLO correction.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-slo-correction.ts)                  |
| `delete-slo`                             | Delete an SLO.                                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-slo.ts)                             |
| `delete-synthetic-tests`                 | Delete one or more Synthetic tests.                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-synthetic-tests.ts)                 |
| `delete-team`                            | Delete a team.                                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-team.ts)                            |
| `delete-user-invitations`                | Revoke/delete all pending invitations for a user.                                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/delete-user-invitations.ts)                |
| `disable-user`                           | Disable (deactivate) a user, preventing further login.                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/disable-user.ts)                           |
| `get-api-key`                            | Get a single API key's metadata by id.                                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-api-key.ts)                            |
| `get-current-user`                       | Get the profile of the user this connection authenticates as, including org/role relationships.                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-current-user.ts)                       |
| `get-dashboard`                          | Get a single dashboard by id, including its full widget layout.                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-dashboard.ts)                          |
| `get-host-tags`                          | Get tags assigned to a specific host.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-host-tags.ts)                          |
| `get-hourly-usage`                       | Get hourly usage broken down by product family — the current recommended usage endpoint (most per-product v1 hourly endpoints are deprecated in favor of this one). | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-hourly-usage.ts)                       |
| `get-monitor`                            | Get a single monitor by id                                                                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-monitor.ts)                            |
| `get-notebook`                           | Get a single notebook by id.                                                                                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-notebook.ts)                           |
| `get-on-call-schedule`                   | Get a single On-Call schedule by id.                                                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-on-call-schedule.ts)                   |
| `get-organization`                       | Get details of a single organization.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-organization.ts)                       |
| `get-restriction-policy`                 | Get the restriction policy (fine-grained access bindings) for a specific resource.                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-restriction-policy.ts)                 |
| `get-role`                               | Get a single role by id.                                                                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-role.ts)                               |
| `get-rum-application`                    | Get a single RUM application by id.                                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-rum-application.ts)                    |
| `get-sensitive-data-scanner-config`      | Get the full Sensitive Data Scanner configuration tree (scanning groups and rules).                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-sensitive-data-scanner-config.ts)      |
| `get-slo-correction`                     | Get a single SLO correction by id.                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-slo-correction.ts)                     |
| `get-slo-history`                        | Get the historical SLI value for an SLO over a time range.                                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-slo-history.ts)                        |
| `get-slo`                                | Get a single SLO by id.                                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-slo.ts)                                |
| `get-synthetic-api-test`                 | Get a single Synthetic API test's configuration.                                                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-synthetic-api-test.ts)                 |
| `get-team`                               | Get a single team by id.                                                                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-team.ts)                               |
| `get-usage-summary`                      | Get a summary of billable usage across all Datadog products for a given month range.                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-usage-summary.ts)                      |
| `get-user-invitation`                    | Get the status/details of a single user invitation.                                                                                                                 | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-user-invitation.ts)                    |
| `get-user`                               | Get a single user by id.                                                                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/get-user.ts)                               |
| `list-api-keys`                          | List API keys configured for this account (metadata only, not secret values).                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-api-keys.ts)                          |
| `list-application-keys`                  | List application keys for this account.                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-application-keys.ts)                  |
| `list-case-projects`                     | List case-management projects (containers for cases, similar in spirit to a Jira project).                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-case-projects.ts)                     |
| `list-cases`                             | List or search cases across projects.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-cases.ts)                             |
| `list-catalog-entities`                  | List Software Catalog entities                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-catalog-entities.ts)                  |
| `list-container-images`                  | List container images observed in this account, optionally enriched with security scan data.                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-container-images.ts)                  |
| `list-containers`                        | List containers reported by hosts running the Datadog Agent.                                                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-containers.ts)                        |
| `list-dashboards`                        | List dashboards in this account.                                                                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-dashboards.ts)                        |
| `list-downtimes`                         | List scheduled and active downtimes.                                                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-downtimes.ts)                         |
| `list-events`                            | List events (deployments, alerts, custom annotations) within a time range.                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-events.ts)                            |
| `list-hosts`                             | List hosts reporting into this account.                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-hosts.ts)                             |
| `list-incidents`                         | List incidents tracked via Datadog Incident Management.                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-incidents.ts)                         |
| `list-metrics`                           | List active metric names reporting in this account since a given time.                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-metrics.ts)                           |
| `list-monitors`                          | List monitors (alerting rules) configured in this Datadog account.                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-monitors.ts)                          |
| `list-notebooks`                         | List notebooks in this account.                                                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-notebooks.ts)                         |
| `list-organizations`                     | List organizations manageable by this account (relevant for multi-org/MSP setups).                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-organizations.ts)                     |
| `list-personal-access-tokens`            | List personal access tokens                                                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-personal-access-tokens.ts)            |
| `list-processes`                         | List processes reported by hosts running the Datadog Agent's live process collection.                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-processes.ts)                         |
| `list-role-permissions`                  | List the permissions granted to a role.                                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-role-permissions.ts)                  |
| `list-roles`                             | List roles (permission bundles assignable to users) in this account.                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-roles.ts)                             |
| `list-rum-applications`                  | List Real User Monitoring (RUM) applications configured in this account.                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-rum-applications.ts)                  |
| `list-rum-metrics`                       | List custom metrics derived from RUM events.                                                                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-rum-metrics.ts)                       |
| `list-security-rules`                    | List Cloud SIEM / Security Monitoring detection rules.                                                                                                              | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-security-rules.ts)                    |
| `list-service-account-access-tokens`     | List access tokens issued to a service account.                                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-service-account-access-tokens.ts)     |
| `list-service-account-application-keys`  | List application keys owned by a service account.                                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-service-account-application-keys.ts)  |
| `list-service-definitions`               | List service definitions in the Service Catalog.                                                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-service-definitions.ts)               |
| `list-slo-corrections`                   | List SLO corrections (time windows excluded from an SLO's error-budget calculation, e.g. for planned maintenance).                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-slo-corrections.ts)                   |
| `list-slos`                              | List Service Level Objectives.                                                                                                                                      | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-slos.ts)                              |
| `list-synthetic-locations`               | List available public and private Synthetic test locations.                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-synthetic-locations.ts)               |
| `list-synthetic-tests`                   | List Synthetic API/browser/mobile tests.                                                                                                                            | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-synthetic-tests.ts)                   |
| `list-team-memberships`                  | List users who are members of a team.                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-team-memberships.ts)                  |
| `list-teams`                             | List teams in this organization.                                                                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-teams.ts)                             |
| `list-user-identity-providers`           | Get identity-provider (SSO) overrides configured for a specific user.                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-user-identity-providers.ts)           |
| `list-user-permissions`                  | List the effective permissions a user has (aggregated from their assigned roles).                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-user-permissions.ts)                  |
| `list-user-team-memberships`             | List the teams a specific user belongs to (the inverse view of list-team-memberships, which lists users for a given team).                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-user-team-memberships.ts)             |
| `list-users`                             | List users in this account.                                                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/list-users.ts)                             |
| `mute-monitor`                           | Mute (silence) a monitor's notifications.                                                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/mute-monitor.ts)                           |
| `post-event`                             | Create a custom event (annotation) on the Datadog event stream.                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/post-event.ts)                             |
| `query-metrics`                          | Query a metric time series data points over a time range.                                                                                                           | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/query-metrics.ts)                          |
| `search-logs`                            | Search ingested log events within a time range.                                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/search-logs.ts)                            |
| `send-user-invitation`                   | (Re-)send an invitation email to one or more pending users.                                                                                                         | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/send-user-invitation.ts)                   |
| `submit-logs`                            | Ingest raw log lines.                                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/submit-logs.ts)                            |
| `submit-metrics`                         | Ingest custom metric data points                                                                                                                                    | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/submit-metrics.ts)                         |
| `unmute-monitor`                         | Unmute a previously muted monitor.                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/unmute-monitor.ts)                         |
| `update-api-key`                         | Rename an API key.                                                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-api-key.ts)                         |
| `update-current-user`                    | Update the profile of the user this connection authenticates as (name/title).                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-current-user.ts)                    |
| `update-dashboard`                       | Update a dashboard's title, layout, or widgets.                                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-dashboard.ts)                       |
| `update-monitor`                         | Update a monitor's name, query, message, or options.                                                                                                                | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-monitor.ts)                         |
| `update-notebook`                        | Update a notebook's name, cells, or time range.                                                                                                                     | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-notebook.ts)                        |
| `update-organization`                    | Update organization settings (name, billing, SAML config).                                                                                                          | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-organization.ts)                    |
| `update-restriction-policy`              | Set or replace the restriction policy (access bindings) for a resource.                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-restriction-policy.ts)              |
| `update-role`                            | Update a role's name.                                                                                                                                               | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-role.ts)                            |
| `update-rum-application`                 | Update a RUM application's name or settings.                                                                                                                        | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-rum-application.ts)                 |
| `update-synthetic-api-test`              | Edit an existing Synthetic API test configuration.                                                                                                                  | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-synthetic-api-test.ts)              |
| `update-team`                            | Update a team's name, handle, or description.                                                                                                                       | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-team.ts)                            |
| `update-user`                            | Update a user's name, email, title, or disabled status.                                                                                                             | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/update-user.ts)                            |
| `validate-monitor`                       | Validate a monitor definition (type + query) without creating it.                                                                                                   | [Action](/docs/guides/functions/action-functions)   | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/actions/validate-monitor.ts)                       |
| `case_projects`                          | Sync case-management projects.                                                                                                                                      | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/case_projects.ts)                            |
| `dashboards`                             | Sync dashboards in this account.                                                                                                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/dashboards.ts)                               |
| `events`                                 | Sync events (deployments, alerts, custom annotations) in a time window                                                                                              | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/events.ts)                                   |
| `hosts`                                  | Sync hosts reporting into this account.                                                                                                                             | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/hosts.ts)                                    |
| `monitors`                               | Sync monitors (alerting rules) configured in this account.                                                                                                          | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/monitors.ts)                                 |
| `notebooks`                              | Sync notebooks in this account.                                                                                                                                     | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/notebooks.ts)                                |
| `roles`                                  | Sync roles (permission bundles) configured in this account.                                                                                                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/roles.ts)                                    |
| `rum_applications`                       | Sync Real User Monitoring (RUM) applications configured in this account.                                                                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/rum_applications.ts)                         |
| `service_definitions`                    | Sync Service Catalog service definitions.                                                                                                                           | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/service_definitions.ts)                      |
| `slos`                                   | Sync Service Level Objectives.                                                                                                                                      | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/slos.ts)                                     |
| `synthetic_tests`                        | Sync Synthetic API/browser/mobile tests.                                                                                                                            | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/synthetic_tests.ts)                          |
| `teams`                                  | Sync teams in this organization.                                                                                                                                    | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/teams.ts)                                    |
| `users`                                  | Sync users in this account.                                                                                                                                         | [Sync](/docs/guides/functions/syncs/sync-functions) | [🔗 Github](https://github.com/NangoHQ/integration-templates/blob/main/integrations/datadog/syncs/users.ts)                                    |

***
