app.didpic.admin.listAuditLog

lexicons.didpic.app

Documentation

List audit log entries.

main query

List audit log entries.

Parameters

cursor string Optional

No description available.

limit integer Optional

No description available.

Output

Encodingapplication/json
cursor string Optional

No description available.

entries array Required

No description available.

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
View raw schema
{
  "type": "query",
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "entries"
      ],
      "properties": {
        "cursor": {
          "type": "string"
        },
        "entries": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "action",
              "source",
              "createdAt"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "action": {
                "type": "string"
              },
              "source": {
                "enum": [
                  "oauth",
                  "token"
                ],
                "type": "string"
              },
              "details": {
                "type": "unknown"
              },
              "actorDid": {
                "type": "string",
                "format": "did"
              },
              "createdAt": {
                "type": "string",
                "format": "datetime"
              }
            }
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "properties": {
      "limit": {
        "type": "integer",
        "default": 50,
        "maximum": 200,
        "minimum": 1
      },
      "cursor": {
        "type": "string"
      }
    }
  },
  "description": "List audit log entries."
}

Lexicon Garden

@