API Reference/Calendars

Patch Bot

Updates the configuration of a bot already scheduled to record an event. Allows modification of recording settings, webhook URLs, and other bot parameters without canceling and recreating the scheduled recording. For recurring events, the 'all_occurrences' parameter determines whether changes apply to all instances or just the specific occurrence. Returns the updated event(s) with the modified bot parameters.

PATCH
/calendar_events/{uuid}/bot

Authorization

x-meeting-baas-api-key<token>

API key for authentication

In: header

Request Body

application/jsonRequired
bot_imagestring | null
Default: null
bot_namestring | null
deduplication_keystring | null
Default: null
enter_messagestring | null
Default: null
extraunknown
Default: null
noone_joined_timeoutinteger | null
Default: nullFormat: "int32"
recording_modestring | string | string
speech_to_textAny properties in object,string
Default: null
streaming_audio_frequencystring
Default: null
streaming_inputstring | null
Default: null
streaming_outputstring | null
Default: null
waiting_room_timeoutinteger | null
Default: nullFormat: "int32"
webhook_urlstring | null

Path Parameters

uuidRequiredstring

The UUID identifier

Query Parameters

all_occurrencesboolean | null

schedule a bot to all occurences of a recurring event

curl -X PATCH "https://api.meetingbaas.com/calendar_events/string/bot" \
  -H "x-meeting-baas-api-key: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "bot_image": null,
    "bot_name": "string",
    "deduplication_key": null,
    "enter_message": null,
    "extra": null,
    "noone_joined_timeout": null,
    "recording_mode": "speaker_view",
    "speech_to_text": null,
    "streaming_audio_frequency": null,
    "streaming_input": null,
    "streaming_output": null,
    "waiting_room_timeout": null,
    "webhook_url": "string"
  }'

[
  {
    "attendees": [
      {
        "email": "string",
        "name": "string"
      }
    ],
    "bot_param": {
      "bot_image": "string",
      "bot_name": "string",
      "deduplication_key": "string",
      "enter_message": "string",
      "extra": {},
      "noone_joined_timeout": 0,
      "recording_mode": "speaker_view",
      "speech_to_text_api_key": "string",
      "speech_to_text_provider": "Gladia",
      "streaming_audio_frequency": "16khz",
      "streaming_input": "string",
      "streaming_output": "string",
      "waiting_room_timeout": 0,
      "webhook_url": "string"
    },
    "calendar_uuid": "fd186a18-ef28-468e-9173-223796807e2e",
    "deleted": true,
    "end_time": "2019-08-24T14:15:22Z",
    "google_id": "string",
    "is_organizer": true,
    "is_recurring": true,
    "last_updated_at": "2019-08-24T14:15:22Z",
    "meeting_url": "string",
    "name": "string",
    "raw": {},
    "recurring_event_id": "string",
    "start_time": "2019-08-24T14:15:22Z",
    "uuid": "095be615-a8ad-4c33-8e9c-c7612fbf6c9f"
  }
]