Skip to main content
PUT
/
api
/
v1
/
status-pages
/
{id}
/
components
/
reorder
Batch reorder components (and optionally move between groups)
curl --request PUT \
  --url https://api.devhelm.io/api/v1/status-pages/{id}/components/reorder \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "positions": [
    {
      "componentId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "displayOrder": 123,
      "groupId": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
    }
  ]
}
'

Authorizations

Authorization
string
header
required

API key (dh_live_...) or Auth0 JWT token

Path Parameters

id
string<uuid>
required

Body

application/json

Batch component reorder request

positions
object[]
required

Ordered list of component IDs with their new positions

Minimum array length: 1

Response

204

No Content