Skip to main content
POST
/
v1
/
bot
/
calendar
/
events
Create Calendar Event
curl --request POST \
  --url https://api.boostgpt.co/v1/bot/calendar/events \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "start_at": "<string>",
  "title": "<string>",
  "description": "<string>",
  "end_at": "<string>",
  "timezone": "<string>",
  "location": "<string>",
  "contact_id": "<string>",
  "attendee_name": "<string>",
  "attendee_email": "<string>",
  "attendee_phone": "<string>",
  "notes": "<string>",
  "send_confirmation": true
}
'
{}

Documentation Index

Fetch the complete documentation index at: https://docs.boostgpt.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Enter your API key

Query Parameters

project_id
string
required

Project ID

bot_id
string
required

Agent ID

Body

application/json
start_at
string
required
title
string
description
string
end_at
string
timezone
string
location
string
contact_id
string
attendee_name
string
attendee_email
string
attendee_phone
string
notes
string
send_confirmation
boolean

Response

Create Calendar Event successful

The response is of type object.