PUT
/
v1
/
services
/
{id}
curl --request PUT \
  --url https://api.rootly.com/v1/services/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/vnd.api+json' \
  --data '{
  "data": {
    "type": "services",
    "attributes": {
      "name": "<string>",
      "description": "<string>",
      "public_description": "<string>",
      "notify_emails": [
        "<string>"
      ],
      "color": "<string>",
      "position": 123,
      "backstage_id": "<string>",
      "external_id": "<string>",
      "pagerduty_id": "<string>",
      "opsgenie_id": "<string>",
      "cortex_id": "<string>",
      "service_now_ci_sys_id": "<string>",
      "github_repository_name": "<string>",
      "github_repository_branch": "<string>",
      "gitlab_repository_name": "<string>",
      "gitlab_repository_branch": "<string>",
      "environment_ids": [
        "<string>"
      ],
      "service_ids": [
        "<string>"
      ],
      "owners_group_ids": [
        "<string>"
      ],
      "owners_user_ids": [
        123
      ],
      "alerts_email_enabled": true,
      "alert_urgency_id": "<string>",
      "slack_channels": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ],
      "slack_aliases": [
        {
          "id": "<string>",
          "name": "<string>"
        }
      ]
    }
  }
}'
{
  "data": {
    "id": "11d8d29c-7210-458a-b574-9dbea226a01c",
    "type": "services",
    "attributes": {
      "name": "elasticsearch-staging",
      "slug": "ut-ad-eos-necessitatibus",
      "description": "Elastisearch",
      "public_description": "Public description updated",
      "notify_emails": [
        "hello@rootly.com",
        "world@rootly.com"
      ],
      "color": "#FFF",
      "status": "partial_outage",
      "position": 2,
      "show_uptime": true,
      "show_uptime_last_days": 60,
      "slack_channels": [
        {
          "id": "C03MKDSEJE8",
          "name": "elastisearch"
        }
      ],
      "slack_aliases": [
        {
          "id": "S03F7QUV7F1",
          "name": "leadership"
        }
      ],
      "github_repository_name": "rootlyhq/my-another-github-service",
      "github_repository_branch": "master",
      "gitlab_repository_name": "rootlyhq/my-another-gitlab-service",
      "gitlab_repository_branch": "master",
      "opsgenie_id": "8743a1b2-11da-480e-8493-744660987bec",
      "pagerduty_id": "PQ9K7I9",
      "backstage_id": null,
      "external_id": "33bfcc62-cc35-46e6-a270-8c52a56fb358",
      "cortex_id": null,
      "service_now_ci_sys_id": null,
      "environment_ids": [
        "605a8541-ffd3-4918-a6c9-1a885e6d3add"
      ],
      "service_ids": [
        "11d8d29c-7210-458a-b574-9dbea226a01c"
      ],
      "owners_group_ids": [],
      "owners_user_ids": [],
      "incidents_count": 1,
      "alert_urgency_id": null,
      "alerts_email_enabled": false,
      "alerts_email_address": "service-14294d8b17c1a60c30aad23e9bfc62c1@email.rootly.com",
      "created_at": "2025-04-18T09:52:52.205-07:00",
      "updated_at": "2025-04-18T09:53:02.251-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
data
object
required

Response

200
application/vnd.api+json
service updated
data
object
required