EnderDash

Update Status Page Config

POST
/organizations/updateStatusPageConfig

Authorization

better-auth.session_token<token>

Signed-in EnderDash browser session cookie.

In: cookie

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

organizationId?string
Length1 <= length
organizationSlug?string
Length1 <= length
description?|null
enabled*boolean
servers*array<>
Itemsitems <= 200
showServerPlayers*boolean
showTotalPlayers*boolean
showTps*boolean
showUptime*boolean
title?|null

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/organizations/updateStatusPageConfig" \  -H "Content-Type: application/json" \  -d '{    "enabled": true,    "servers": [      {        "includeInTotalPlayers": true,        "position": 0,        "serverId": "10d2345a-e43d-463d-830e-4f5b19b60d41",        "showOnlineState": true,        "showPlayerCount": true,        "showTps": true,        "visible": true      }    ],    "showServerPlayers": true,    "showTotalPlayers": true,    "showTps": true,    "showUptime": true  }'
null