Parameters
No parameters required
This endpoint takes no path, query, header or body parameters.
Returns every system log code registered in core__system_log_code with its title and description. Powers docs.bizkithub.com/system-codes — the public reference for codes like TTL_003, INTERNAL_FIO_API, MBR_NOTE_MENT that appear in technical-notification e-mails and in the admin log viewer. Operational statistics (occurrence counts, first/last-seen timestamps, severity history) are intentionally not exposed here so the public docs do not disclose platform scale; those live behind the admin BFF instead.
No parameters required
This endpoint takes no path, query, header or body parameters.
1 status code documented
itemsobject[]RequiredcodestringRequiredSystem log code identifier (max 64 chars).
TTL_003INTERNAL_FIO_API_UNAVAILABLEtitlestring | nullRequiredHuman-readable title. null when the code has not been documented yet.
descriptionstring | nullRequiredDetailed explanation. null when the code has not been documented yet.
{
"items": [
{
"code": "TTL_003"
}
]
}GET /api/v1/docs/system-log-code-list
curl -X GET "https://api.bizkithub.com/api/v1/docs/system-log-code-list" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.