BizKitHub
DocsAPI ReferenceDocs/api/v1/docs/system-log-code-list
getDocsPublic API v1

/api/v1/docs/system-log-code-list

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.

docsgetApiV1DocsSystem-log-code-list

Parameters

No parameters required

This endpoint takes no path, query, header or body parameters.

Response schema

1 status code documented

200SuccessSystem log code reference.
itemsobject[]Required
Each array item:
codestringRequired

System log code identifier (max 64 chars).

ExamplesTTL_003INTERNAL_FIO_API_UNAVAILABLE
titlestring | nullRequired

Human-readable title. null when the code has not been documented yet.

One of 2:
Variant 1
string
Variant 2
null
descriptionstring | nullRequired

Detailed explanation. null when the code has not been documented yet.

One of 2:
Variant 1
string
Variant 2
null

Response example

application/json
{
  "items": [
    {
      "code": "TTL_003"
    }
  ]
}

Request example

GET /api/v1/docs/system-log-code-list

get
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"

Need an API key?

All BizKitHub public API endpoints require authentication via API key.

Get API Key