Skribby
API Reference

Send Chat Message

Deprecated

Deprecated endpoint

This endpoint will not receive new features and may be removed in the future. For realtime interactions with the bot, use the realtime functionality.

Realtime functionality guide: /docs/guides/realtime-transcription#send-chat-message

POST/bot/{id}/chat-message
https://platform.skribby.io/api/v1/bot/{id}/chat-message

Send a chat message as the meeting bot

Path Parameters

NameTypeDescription
idrequired
string<uuid>Bot ID

Request Body

required
application/json
messagestringrequired

The URL to the meeting itself which the bot will use to join

Example: "Welcome to the meeting!"

Responses

messagestring
Example: "Message sent to the meeting bot."

Request

curl -X POST \
  "https://platform.skribby.io/api/v1/bot/{id}/chat-message" \
  -H "Authorization: Bearer YOUR_API_KEY" \
  -H "Content-Type: application/json" \
  -d '{
    "message": "Welcome to the meeting!"
  }'

Response

200 OKapplication/json
{
  "message": "Message sent to the meeting bot."
}