Skip to main content
POST
/
api
/
v1
/
status-pages
/
{status_page_id}
/
component-groups
Create component group
curl --request POST \
  --url https://app.larm.dev/api/v1/status-pages/{status_page_id}/component-groups \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "position": 123
}
'
{
  "data": {
    "id": "880e8400-e29b-41d4-a716-446655440000",
    "name": "Backend",
    "position": 0,
    "inserted_at": "2025-03-01T12:00:00Z",
    "updated_at": "2025-03-01T12:00: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. Component groups render as collapsible headings on the public status page.
status_page_id
string
required
Status page UUID
name
string
required
Group name (1–255 characters)
position
integer
default:0
Display position (0-indexed) within the page
{
  "data": {
    "id": "880e8400-e29b-41d4-a716-446655440000",
    "name": "Backend",
    "position": 0,
    "inserted_at": "2025-03-01T12:00:00Z",
    "updated_at": "2025-03-01T12:00:00Z"
  }
}