Get a single Datadog integration

Returns a single Datadog integration by ID.

GET https://uptime.betterstack.com/api/v2/datadog-integrations/{datadog_integration_id}

URL parameters

datadog_integration_id
required string

Headers

Authorization
required string
200

Response body

{
  "data": {
    "id": "37",
    "type": "datadog_integration",
    "attributes": {
      "call": false,
      "sms": false,
      "email": true,
      "team_wait": 180,
      "recovery_period": null,
      "policy_id": null,
      "push": true,
      "name": "Test",
      "paused": false,
      "alerting_rule": "alert_and_warn",
      "webhook_url": "https://uptime.betterstack.dev/api/v1/datadog/webhook/[token]"
    }
  }
}

Example cURL

Example
curl --request GET \
  --url https://uptime.betterstack.com/api/v2/datadog-integrations/37 \
  --header "Authorization: Bearer $TEAM_TOKEN"