social.colibri.beta.community.listModerationLog

colibri.social

Documentation

Lists a community's moderation audit log.

main query

Lists a community's moderation audit log.

Parameters

community string did Required

The community to list the moderation log for.

cursor string Optional

Pagination cursor from a previous response.

limit integer Optional

Maximum number of log entries to return.

Output

Encodingapplication/json
cursor string Optional

Pagination cursor for the next page, if more entries exist.

entries array Required

Log entries, most recent first.

Errors

AuthRequired The request is missing, malformed, or unverifiable service auth.
Forbidden The caller lacks the moderation.viewLog permission.
CommunityNotFound No community exists at the given DID.
Try It

Requests are sent directly from your browser. Some servers may block requests due to CORS.

Base URL for XRPC calls (e.g., https://api.bsky.social)
Parameters
The community to list the moderation log for.
Pagination cursor from a previous response.
Maximum number of log entries to return.
View raw schema
{
  "type": "query",
  "errors": [
    {
      "name": "AuthRequired",
      "description": "The request is missing, malformed, or unverifiable service auth."
    },
    {
      "name": "Forbidden",
      "description": "The caller lacks the moderation.viewLog permission."
    },
    {
      "name": "CommunityNotFound",
      "description": "No community exists at the given DID."
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "entries"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Pagination cursor for the next page, if more entries exist."
        },
        "entries": {
          "type": "array",
          "items": {
            "ref": "social.colibri.beta.community.defs#moderationView",
            "type": "ref",
            "description": "A moderation log entry."
          },
          "description": "Log entries, most recent first."
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "community"
    ],
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 100,
        "minimum": 1,
        "description": "Maximum number of log entries to return."
      },
      "cursor": {
        "type": "string",
        "description": "Pagination cursor from a previous response."
      },
      "community": {
        "type": "string",
        "format": "did",
        "description": "The community to list the moderation log for."
      }
    }
  },
  "description": "Lists a community's moderation audit log."
}

Lexicon Garden

@