Validation Errors
Validation Errors for PanelConfig API clients.
The inspected read endpoints do not perform heavy body validation. For planned write endpoints, validation errors should use 422 and include field-level error information.
Success
{
"success": true,
"message": "PanelConfig API resource loaded.",
"data": {
"resource": "domains",
"items": []
},
"timestamp": "2026-06-19T00:00:00+00:00"
}Error
{
"success": false,
"message": "Invalid or expired API token.",
"errors": [],
"timestamp": "2026-06-19T00:00:00+00:00"
}Client Notes
- Check the HTTP status code first.
- Then inspect
success. - Do not assume
itemsexists on every endpoint. - Log
messagevalues for operator review, but never log tokens.