Skip to main content
POST
/
v1
/
calendar
/
book-meeting
Book Meeting
curl --request POST \
  --url https://api.example.com/v1/calendar/book-meeting \
  --header 'Content-Type: application/json' \
  --data '
{
  "title": "<string>",
  "description": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "attendee_email": "<string>",
  "selected_calendar_ids": [
    "<string>"
  ]
}
'
{
  "event": {
    "event_id": "<string>",
    "event_url": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.atonom.ai/llms.txt

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

Body

application/json
title
string

Meeting title shown to attendees.

description
string

Agenda or body text when provided.

start_time
string<date-time>

Meeting start instant.

end_time
string<date-time>

Meeting end instant.

timezone
string

IANA timezone for the meeting.

attendee_email
string

Primary attendee email to invite when set.

selected_calendar_ids
string[]

Calendars to book on; provider-specific ids.

Response

OK

event
object

Created or updated event metadata.