PUT
/
v1
/
pulses
/
{id}
Update a pulse
curl --request PUT \
  --url https://api.rootly.com/v1/pulses/{id} \
  --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": "c43881b6-e91b-4369-9cc5-85469158d54b",
    "type": "pulses",
    "attributes": {
      "short_id": null,
      "source": "unknown",
      "summary": "Deploy k8s",
      "labels": [],
      "refs": [],
      "services": [
        {
          "id": "7281b64b-7bc9-46a2-a093-67ea016f8469",
          "team_id": 321,
          "name": "Eligendi commodi nobis recusandae.",
          "slug": "eligendi-commodi-nobis-recusandae",
          "description": "Officia suscipit asperiores distinctio.",
          "deleted_at": null,
          "created_at": "2025-07-21T23:21:36.739-07:00",
          "updated_at": "2025-07-21T23:21:36.739-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": 2,
          "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-432703a26b15a4d0770912bbbfb86c71@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": "be6421d8-050d-47e4-ade2-4d9a5fe371d9",
          "team_id": 321,
          "name": "Quae eligendi excepturi consequatur.",
          "slug": "quae-eligendi-excepturi-consequatur",
          "description": "Reiciendis eos est repellendus.",
          "color": "#eb0aeb",
          "deleted_at": null,
          "created_at": "2025-07-21T23:21:36.760-07:00",
          "updated_at": "2025-07-21T23:21:36.760-07:00",
          "incidents_count": 0,
          "position": 2,
          "slack_channels": [],
          "slack_aliases": [],
          "external_id": null,
          "notify_emails": []
        }
      ],
      "data": {},
      "external_url": null,
      "started_at": "2025-07-21T23:21:36.650-07:00",
      "ended_at": null,
      "created_at": "2025-07-21T23:21:36.650-07:00",
      "updated_at": "2025-07-21T23:21:40.439-07:00"
    }
  }
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/vnd.api+json

Response

200
application/vnd.api+json

pulse updated

The response is of type object.