3 KiB
/admin
This endpoint is for the server admin.
Due to that, it requires authentication using the HTTP basic authentication. The username can be anything, the password must be the configured admin token.
Additionally, this endpoint allows cross origin requests.
GET /admin/status
Use this to get the server status.
Response
This returns a JSON object with websocketClients
(of the type number,
the number of clients connected using the websocket) and the maps counters
and maxValues
which map values to numbers. You should not make any assumptions about the key names
and their availability.
example response
{
"websocketClients": 3,
"counters": {
"testCounter": 1
},
"maxValues": {
"testMax": 3
}
}
POST /admin/reset-counters
Use this to reset the counters and maxValues included in the server status.
Although this uses POST, it does not take any request body
Response: {"ok": true}
GET /admin/status-message
Use this to get the current status message.
This returns a object with the key statusMessage
whose value
of the type string is the current status message.
Example response: {"statusMessage":""}
see
POST /admin/status-message
Use this to set the status message.
Request body: object with message
(string)
Response: {"ok": true}
see
POST /admin/unlock-premium
Use this to unlock all features for one user for a specified duration.
request
request properties: mail
and duration
duration
must beyear
ormonth
mail
must be a mail address of any user assigned to the family for which the features should be unlocked
response
If everything worked:
{"ok": true}
If the duration was invalid or no mail address was specified: HTTP status code 400 Bad Request
If there was nothing found for the mail address: HTTP status code 409 Conflict
see
POST /admin/unlock-premium-v2
Use this to unlock all features for one user for a specified duration.
request
request properties: purchaseToken
and purchaseId
purchasetoken
is a string which the client shows at the purchase screenpurchaseId
is the ID that is used at the bill
response
The response contains the following properties:
ok
(boolean)error
- string
- set if and only if
ok
is false - possible values
token invalid
illegal state
purchase id already used
detail
- optional string
- should be shown to the support
lastPurchase
- optional object
- should be shown to the support
wasAlreadyExecuted
(boolean, set if and only ifok
is true)
If the request was malformed: HTTP status code 400 Bad Request
Using the same purchaseId
twice results in:
wasAlreadyExecuted
if the familyId is unchangederror
=purchase id already used
otherwise