POST
/
calendar
/
create_calendar
Create Calendar
curl --request POST \
  --url https://api.meestream.ai/v1/calendar/create_calendar \
  --header 'Authorization: <api-key>' \
  --header 'Content-Type: application/json' \
  --data '{
  "google_client_id": "<string>",
  "google_client_secret": "<string>",
  "google_refresh_token": "<string>",
  "bot_name": "<string>",
  "audio_required": true,
  "video_required": true,
  "bot_message": "<string>",
  "transcription": {
    "deepgram": {
      "model": "<string>",
      "language": "<string>"
    }
  }
}'
{
  "message": "<string>",
  "events_fetched": 123,
  "calendars_processed": 123,
  "user_email": "<string>"
}

Authorizations

Authorization
string
header
required

All API endpoints are authenticated using API Keys. The key should be included in the 'Authorization' header, prefixed with 'Token '. Example: 'Authorization: Token YOUR_API_KEY'.

Body

application/json

Response

201
application/json

Calendar created successfully and events fetched.

The response is of type object.