chat.bsky.moderation.getConvos

bsky-lexicons.bsky.social

Documentation

Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.

main query

Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response.

Parameters

convoIds array of string Required

No description available.

Output

Encodingapplication/json
convos 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": [
        "convos"
      ],
      "properties": {
        "convos": {
          "type": "array",
          "items": {
            "ref": "chat.bsky.moderation.defs#convoView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "parameters": {
    "type": "params",
    "required": [
      "convoIds"
    ],
    "properties": {
      "convoIds": {
        "type": "array",
        "items": {
          "type": "string"
        },
        "maxLength": 100,
        "minLength": 1
      }
    }
  },
  "description": "Gets existing conversations by their IDs, for moderation purposes. Does not require the requester to be a member of the conversations. Unknown IDs are silently omitted from the response."
}

Lexicon Garden

@