com.getorbyt.community.resolveReport

getorbyt.com

Documentation

Resolves one Community report by removing its post or dismissing the report. Requires authenticated moderator authorization.

main procedure

Resolves one Community report by removing its post or dismissing the report. Requires authenticated moderator authorization.

Input

Encodingapplication/json
action string Required

No description available.

note string Optional

No description available.

maxLength: 2000 bytes
report string Required

No description available.

maxLength: 128 bytes

Output

Encodingapplication/json

Errors

AuthenticationRequired
ReportNotFound
InsufficientRole
InvalidState
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": [
        "report",
        "action"
      ],
      "properties": {
        "note": {
          "type": "string",
          "maxLength": 2000
        },
        "action": {
          "type": "string",
          "knownValues": [
            "remove",
            "dismiss"
          ]
        },
        "report": {
          "type": "string",
          "maxLength": 128
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "AuthenticationRequired"
    },
    {
      "name": "ReportNotFound"
    },
    {
      "name": "InsufficientRole"
    },
    {
      "name": "InvalidState"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "report"
      ],
      "properties": {
        "report": {
          "ref": "com.getorbyt.community.defs#reportView",
          "type": "ref"
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Resolves one Community report by removing its post or dismissing the report. Requires authenticated moderator authorization."
}

Lexicon Garden

@