tools.ozone.moderation.listScheduledActions

ozone-lexicons.bsky.social

Documentation

List scheduled moderation actions with optional filtering

main procedure

List scheduled moderation actions with optional filtering

Input

Encodingapplication/json
cursor string Optional

Cursor for pagination

endsBefore stringdatetime Optional

Filter actions scheduled to execute before this time

limit integer Optional

Maximum number of results to return

minimum: 1maximum: 100
startsAfter stringdatetime Optional

Filter actions scheduled to execute after this time

statuses array Required

Filter actions by status

minLength: 1 items
subjects array Optional

Filter actions for specific DID subjects

maxLength: 100 items

Output

Encodingapplication/json
actions array Required

No description available.

cursor string Optional

Cursor for next page of results

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://bsky.social)
Enter valid JSON for the request body
View raw schema
{
  "type": "procedure",
  "input": {
    "schema": {
      "type": "object",
      "required": [
        "statuses"
      ],
      "properties": {
        "limit": {
          "type": "integer",
          "default": 50,
          "maximum": 100,
          "minimum": 1,
          "description": "Maximum number of results to return"
        },
        "cursor": {
          "type": "string",
          "description": "Cursor for pagination"
        },
        "statuses": {
          "type": "array",
          "items": {
            "type": "string",
            "knownValues": [
              "pending",
              "executed",
              "cancelled",
              "failed"
            ]
          },
          "minLength": 1,
          "description": "Filter actions by status"
        },
        "subjects": {
          "type": "array",
          "items": {
            "type": "string",
            "format": "did"
          },
          "maxLength": 100,
          "description": "Filter actions for specific DID subjects"
        },
        "endsBefore": {
          "type": "string",
          "format": "datetime",
          "description": "Filter actions scheduled to execute before this time"
        },
        "startsAfter": {
          "type": "string",
          "format": "datetime",
          "description": "Filter actions scheduled to execute after this time"
        }
      }
    },
    "encoding": "application/json"
  },
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "actions"
      ],
      "properties": {
        "cursor": {
          "type": "string",
          "description": "Cursor for next page of results"
        },
        "actions": {
          "type": "array",
          "items": {
            "ref": "tools.ozone.moderation.defs#scheduledActionView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "List scheduled moderation actions with optional filtering"
}

Lexicon Garden

@