POST
/
v1
/
pulses
Creates a pulse
curl --request POST \
  --url https://api.rootly.com/v1/pulses \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "pulses",
    "attributes": {
      "source": "<string>",
      "summary": "<string>",
      "service_ids": [
        "<string>"
      ],
      "environment_ids": [
        "<string>"
      ],
      "started_at": "2023-11-07T05:31:56Z",
      "ended_at": "2023-11-07T05:31:56Z",
      "external_url": "<string>",
      "labels": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "refs": [
        {
          "key": "<string>",
          "value": "<string>"
        }
      ],
      "data": {}
    }
  }
}'
{
  "data": {
    "id": "b0c92dee-b296-42ea-b4eb-ba18a810ce5b",
    "type": "pulses",
    "attributes": {
      "short_id": null,
      "source": "k8s",
      "summary": "Deploy k8s",
      "labels": [
        {
          "key": "status",
          "value": "succeeded"
        }
      ],
      "refs": [
        {
          "key": "sha",
          "value": "cd62148cbc5eb42168fe99fdb50a364e12b206ac"
        },
        {
          "key": "image",
          "value": "registry.rootly.com/rootly/my-service:cd6214"
        }
      ],
      "services": [
        {
          "id": "35df342c-2358-4a3d-a97e-acfde54075ac",
          "team_id": 321,
          "name": "Doloribus corrupti optio rem.",
          "slug": "doloribus-corrupti-optio-rem",
          "description": "Aut consequatur pariatur explicabo.",
          "deleted_at": null,
          "created_at": "2025-07-15T14:17:55.017-07:00",
          "updated_at": "2025-07-15T14:17:55.017-07:00",
          "opsgenie_id": null,
          "pagerduty_id": null,
          "public_description": null,
          "github_repository_branch": "master",
          "github_repository_name": null,
          "color": "#FAEBB7",
          "heroku_app_name": null,
          "gitlab_repository_name": null,
          "gitlab_repository_branch": "master",
          "kubernetes_deployment_name": null,
          "incidents_count": 0,
          "position": 1,
          "slack_channels": [],
          "slack_aliases": [],
          "backstage_id": null,
          "show_uptime": true,
          "show_uptime_last_days": 60,
          "status": "operational",
          "external_id": null,
          "notify_emails": [],
          "cortex_id": null,
          "alerts_email_enabled": false,
          "alerts_email_address": "service-b39769c7ef0109dcaa45fb2022603f3e@email.rootly.com",
          "opsgenie_team_id": null,
          "service_now_ci_sys_id": null,
          "alert_urgency_id": null,
          "opslevel_id": null,
          "datadog_id": null
        }
      ],
      "environments": [
        {
          "id": "84792cbd-364d-4ad7-a167-42ce68a8007e",
          "team_id": 321,
          "name": "Accusantium recusandae debitis vel.",
          "slug": "accusantium-recusandae-debitis-vel",
          "description": "Dolores quaerat asperiores labore.",
          "color": "#d9f2d9",
          "deleted_at": null,
          "created_at": "2025-07-15T14:17:55.030-07:00",
          "updated_at": "2025-07-15T14:17:55.030-07:00",
          "incidents_count": 0,
          "position": 1,
          "slack_channels": [],
          "slack_aliases": [],
          "external_id": null,
          "notify_emails": []
        }
      ],
      "data": {
        "url": "https://additionaldata.com"
      },
      "external_url": "https://external-url.com",
      "started_at": "2025-07-15T14:00:13.000-07:00",
      "ended_at": "2025-07-15T14:02:13.000-07:00",
      "created_at": "2025-07-15T14:17:57.517-07:00",
      "updated_at": "2025-07-15T14:17:57.517-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/vnd.api+json

Response

201
application/vnd.api+json

pulse created

The response is of type object.