chat.bsky.convo.sendMessageBatch

bsky-lexicons.bsky.social

Documentation

Sends a batch of messages to a conversation.

main procedure

Sends a batch of messages to a conversation.

Input

Encodingapplication/json
items array Required

No description available.

maxLength: 100 items

Output

Encodingapplication/json
items array Required

No description available.

Errors

ConvoLocked
InvalidConvo
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": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "#batchItem",
            "type": "ref"
          },
          "maxLength": 100
        }
      }
    },
    "encoding": "application/json"
  },
  "errors": [
    {
      "name": "ConvoLocked"
    },
    {
      "name": "InvalidConvo"
    }
  ],
  "output": {
    "schema": {
      "type": "object",
      "required": [
        "items"
      ],
      "properties": {
        "items": {
          "type": "array",
          "items": {
            "ref": "chat.bsky.convo.defs#messageView",
            "type": "ref"
          }
        }
      }
    },
    "encoding": "application/json"
  },
  "description": "Sends a batch of messages to a conversation."
}
batchItem object

No description available.

Properties

convoId string Required

No description available.

View raw schema
{
  "type": "object",
  "required": [
    "convoId",
    "message"
  ],
  "properties": {
    "convoId": {
      "type": "string"
    },
    "message": {
      "ref": "chat.bsky.convo.defs#messageInput",
      "type": "ref"
    }
  }
}

Lexicon Garden

@