Skip to main content
POST
/
v1
/
calendar
/
create-event
Create Event
curl --request POST \
  --url https://api.example.com/v1/calendar/create-event \
  --header 'Content-Type: application/json' \
  --data '
{
  "calendar_id": "<string>",
  "title": "<string>",
  "description": "<string>",
  "start_time": "2023-11-07T05:31:56Z",
  "end_time": "2023-11-07T05:31:56Z",
  "timezone": "<string>",
  "show_as": "<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
calendar_id
string

Target calendar id.

title
string

Event title.

description
string

Event body or notes when provided.

start_time
string<date-time>

Event start instant.

end_time
string<date-time>

Event end instant.

timezone
string

IANA timezone for the event.

show_as
string

Busy/free display hint (provider-specific, e.g. busy, free, tentative).

Response

OK

event
object

Created event metadata.