Update an existing status update

Update an existing status page report update. Send only the parameters you wish to change (e.g. message)

PATCH https://uptime.betterstack.com/api/v2/status-pages/{status_page_id}/status-reports/{status_report_id}/status-updates/{status_update_id}

URL parameters

status_page_id
required string
status_report_id
required string
status_update_id
required string

Headers

Authorization
required string
Content_Type
string

Body parameters

message
string
affected_resources
array of objects
published_at
string
200

Response body

{
  "data": {
    "id": "123456",
    "type": "status_update",
    "attributes": {
      "message": "Updated status update message",
      "published_at": "2021-12-16T16:04:09.880Z",
      "status_report_id": 12345,
      "affected_resources": [
        {
          "status_page_resource_id": "12345",
          "status": "degraded"
        }
      ]
    }
  }
}

Example cURL

Example
curl --request PATCH \
  --url https://uptime.betterstack.com/api/v2/status-pages/123456/status-reports/12345/status-updates/123456 \
  --header "Authorization: Bearer $TEAM_TOKEN" \
  --header 'Content-Type: application/json' \
  --data '{"message": "Updated status update message"}'