Update an existing status page section

Update an existing status page section. Send only the parameters you wish to change (e.g. name)

PATCH https://uptime.betterstack.com/api/v2/status-pages/{status_page_id}/sections/{section_id}

URL parameters

status_page_id
required string
section_id
required string

Headers

Authorization
required string
Content_Type
string

Body parameters

name
string
position
integer
200

Response body

{
  "id": "12345",
  "type": "status_page_section",
  "attributes": {
    "name": "EU datacenter 2",
    "position": 0
  }
}

Example cURL

Example
curl --request PATCH \
  --url https://uptime.betterstack.com/api/v2/status-pages/123456789/sections/12345 \
  --header "Authorization: Bearer $TEAM_TOKEN" \
  --header 'Content-Type: application/json' \
  --data '{
    "name": "EU datacenter 2"
}'