List all New Relic integrations

Returns a list of all your New Relic integrations.

GET https://uptime.betterstack.com/api/v2/new-relic-integrations

Headers

Authorization
required string
200

Response body

{
  "data": [
    {
      "id": "37",
      "type": "new_relic_integration",
      "attributes": {
        "call": false,
        "sms": false,
        "email": true,
        "team_wait": 180,
        "recovery_period": null,
        "policy_id": null,
        "push": true,
        "name": "New Relic Integration",
        "paused": false,
        "alerting_rule": "alert_and_warn",
        "webhook_url": "https://uptime.betterstack.dev/api/v1/new-relic/webhook/[token]"
      }
    }
  ],
  "pagination": {
    "first": "https://uptime.betterstack.com/api/v2/new-relic-integrations?page=1",
    "last": "https://uptime.betterstack.com/api/v2/new-relic-integrations?page=1",
    "prev": null,
    "next": null
  }
}

Example cURL

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