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