# chat.bsky.moderation.getConvos

> Published by [bsky-lexicons.bsky.social](https://lexicon.garden/identity/did:plc:4v4y5r3lwsbtmsxhile2ljac)

✓ This is the authoritative definition for this NSID.

## Links

- [View on Lexicon Garden](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.moderation.getConvos)
- [Documentation](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.moderation.getConvos/docs)
- [Examples](https://lexicon.garden/lexicon/did:plc:4v4y5r3lwsbtmsxhile2ljac/chat.bsky.moderation.getConvos/examples)

## Definitions

### `chat.bsky.moderation.getConvos`

**Type**: `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

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `convoIds` | `array` | Yes |  |

#### Output

**Encoding**: `application/json`

| Property | Type | Required | Description |
|----------|------|----------|-------------|
| `convos` | `array` | Yes |  |

## Raw Schema

```json
{
  "id": "chat.bsky.moderation.getConvos",
  "defs": {
    "main": {
      "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."
    }
  },
  "$type": "com.atproto.lexicon.schema",
  "lexicon": 1
}
```
