API Reference
Send Chat Message
DeprecatedDeprecated 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-messagehttps://platform.skribby.io/api/v1/bot/{id}/chat-messageSend a chat message as the meeting bot
Path Parameters
| Name | Type | Description |
|---|---|---|
idrequired | string<uuid> | Bot ID |
Request Body
requiredapplication/json
messagestringrequiredThe URL to the meeting itself which the bot will use to join
Example:
"Welcome to the meeting!"Responses
messagestringExample:
"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."
}