Parameters
1 query
Query parameters
· 1organisationSlugstringRequiredSlug of the organisation to fetch logs for.
Example
acme-corpReturns a paginated system log for the specified organisation, ordered by newest first. Useful for debugging and auditing organisation activity. Requires internal admin membership.
1 query
organisationSlugstringRequiredSlug of the organisation to fetch logs for.
acme-corp1 status code documented
itemsobject[]RequiredidnumberRequiredLog entry ID.
levelstringRequiredLog level (e.g. info, warning, error).
messagestringRequiredLog message.
insertedDatestringRequiredTimestamp of the log entry.
itemCountnumberRequiredTotal number of log entries for this organisation.
{
"items": [
{
"id": 0,
"level": "example_level",
"message": "example_message",
"insertedDate": "example_insertedDate"
}
],
"itemCount": 0
}GET /bff/admin/system-log
curl -X GET "https://api.bizkithub.com/bff/admin/system-log?organisationSlug=acme-corp" \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_API_KEY"All BizKitHub public API endpoints require authentication via API key.