Skip to main content
PATCH
/
api
/
v1
/
status-pages
/
{status_page_id}
/
component-groups
/
{id}
Update component group
curl --request PATCH \
  --url https://app.larm.dev/api/v1/status-pages/{status_page_id}/component-groups/{id} \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "position": 123
}
'
{
  "data": {
    "id": "880e8400-e29b-41d4-a716-446655440000",
    "name": "Backend services",
    "position": 1,
    "inserted_at": "2025-03-01T12:00:00Z",
    "updated_at": "2025-03-01T14:30:00Z"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.larm.dev/llms.txt

Use this file to discover all available pages before exploring further.

Requires status_pages:read_write permission.
status_page_id
string
required
Status page UUID
id
string
required
Component group UUID
name
string
Group name
position
integer
Display position
{
  "data": {
    "id": "880e8400-e29b-41d4-a716-446655440000",
    "name": "Backend services",
    "position": 1,
    "inserted_at": "2025-03-01T12:00:00Z",
    "updated_at": "2025-03-01T14:30:00Z"
  }
}