Skip to main content
POST
/
v1
/
alerts
Creates an alert
curl --request POST \
  --url https://api.rootly.com/v1/alerts \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "alerts",
    "attributes": {
      "noise": "noise",
      "source": "rootly",
      "status": "open",
      "summary": "<string>",
      "description": "<string>",
      "service_ids": [
        "<string>"
      ],
      "group_ids": [
        "<string>"
      ],
      "environment_ids": [
        "<string>"
      ],
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "external_id": "<string>",
      "external_url": "<string>",
      "alert_urgency_id": "<string>",
      "notification_target_type": "User",
      "notification_target_id": "<string>",
      "labels": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "data": {},
      "deduplication_key": "<string>",
      "alert_field_values_attributes": [
        {
          "alert_field_id": "<string>",
          "value": "<string>"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "8087e282-798c-41dc-98b7-0e5a12493ca0",
    "type": "alerts",
    "attributes": {
      "short_id": null,
      "source": "asana",
      "status": "open",
      "summary": "Asana ticket created",
      "description": null,
      "labels": [
        {
          "key": "status",
          "value": "succeeded"
        }
      ],
      "services": [
        {
          "id": "e5679e4a-230a-47e3-8198-a1f4ed83f438",
          "alert_broadcast_channel": {},
          "alert_broadcast_enabled": false,
          "alert_urgency_id": null,
          "alerts_email_address": "service-0183dbd915d970e5764ac9117384ea87@email.rootly.com",
          "alerts_email_enabled": false,
          "backstage_id": null,
          "color": "#F5D9C4",
          "cortex_id": null,
          "created_at": "2025-11-13T12:24:46.309-08:00",
          "datadog_id": null,
          "deleted_at": null,
          "description": "Fugit quidem nam cupiditate.",
          "external_id": null,
          "github_repository_branch": "master",
          "github_repository_name": null,
          "gitlab_repository_branch": "master",
          "gitlab_repository_name": null,
          "heroku_app_name": null,
          "incident_broadcast_channel": {},
          "incident_broadcast_enabled": false,
          "incidents_count": 0,
          "kubernetes_deployment_name": null,
          "name": "Rerum dolorem voluptatem nostrum.",
          "notify_emails": [],
          "opsgenie_id": null,
          "opsgenie_team_id": null,
          "opslevel_id": null,
          "pagerduty_id": null,
          "position": 1,
          "public_description": null,
          "service_now_ci_sys_id": null,
          "show_uptime": true,
          "show_uptime_last_days": 60,
          "slack_aliases": [],
          "slack_channels": [],
          "slug": "rerum-dolorem-voluptatem-nostrum",
          "status": "operational",
          "team_id": 23,
          "updated_at": "2025-11-13T12:24:46.309-08:00"
        }
      ],
      "service_ids": [
        "e5679e4a-230a-47e3-8198-a1f4ed83f438"
      ],
      "groups": [],
      "group_ids": [],
      "environments": [
        {
          "id": "e4d467c5-0caa-4297-8139-4460a97fe8ae",
          "color": "#1e0b0b",
          "created_at": "2025-11-13T12:24:46.346-08:00",
          "deleted_at": null,
          "description": "Consequatur voluptatem ut est.",
          "external_id": null,
          "incidents_count": 0,
          "name": "Accusamus est non voluptas.",
          "notify_emails": [],
          "position": 1,
          "slack_aliases": [],
          "slack_channels": [],
          "slug": "accusamus-est-non-voluptas",
          "team_id": 23,
          "updated_at": "2025-11-13T12:24:46.346-08:00"
        }
      ],
      "environment_ids": [
        "e4d467c5-0caa-4297-8139-4460a97fe8ae"
      ],
      "responders": [],
      "incidents": [],
      "data": {
        "url": "https://asana.com/issues/1"
      },
      "deduplication_key": null,
      "started_at": "2025-11-13T12:21:45.000-08:00",
      "ended_at": "2025-11-13T12:23:45.000-08:00",
      "external_id": null,
      "external_url": null,
      "url": "https://test.rootly.com/account/alerts/8087e282-798c-41dc-98b7-0e5a12493ca0",
      "noise": "not_noise",
      "notification_target_type": null,
      "notification_target_id": null,
      "alert_urgency": {
        "id": "d2319583-6bde-4940-8b9f-31eca7decdea",
        "color": "#C73C40",
        "created_at": "2025-11-13T12:24:46.362-08:00",
        "deleted_at": null,
        "description": "Asperiores sed vitae quam.",
        "name": "wrdit",
        "position": 1,
        "team_id": 23,
        "updated_at": "2025-11-13T12:24:46.368-08:00",
        "urgency": "high"
      },
      "alert_urgency_id": "d2319583-6bde-4940-8b9f-31eca7decdea",
      "notified_users": [],
      "created_at": "2025-11-13T12:24:48.054-08:00",
      "updated_at": "2025-11-13T12:24:48.054-08:00"
    },
    "relationships": {
      "events": {
        "data": [
          {
            "id": "c8c9667d-8f4f-4868-8112-b3fea4beb231",
            "type": "alert_events"
          }
        ]
      }
    }
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/vnd.api+json
data
object
required

Response

alert created

data
object
required