Skribby
API Reference

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."
}