curl https://api.mavioapp.com/v1/calendar/sync \
-H "Authorization: Bearer mvo_live_abc123"
sync = client.calendar.sync_status()
const sync = await client.calendar.syncStatus();
{
"calendars": [
{
"id": "cal_a1b2c3d4",
"provider": "google",
"email": "alice@example.com",
"status": "active",
"last_sync": "2026-04-14T09:45:00Z",
"next_sync": "2026-04-14T10:00:00Z",
"error": null,
"events_synced": 342,
"auto_record": true,
"connected_at": "2026-02-10T08:30:00Z"
}
]
}
Calendar
Calendar sync status
Get the sync status of connected calendars.
GET
/
v1
/
calendar
/
sync
curl https://api.mavioapp.com/v1/calendar/sync \
-H "Authorization: Bearer mvo_live_abc123"
sync = client.calendar.sync_status()
const sync = await client.calendar.syncStatus();
{
"calendars": [
{
"id": "cal_a1b2c3d4",
"provider": "google",
"email": "alice@example.com",
"status": "active",
"last_sync": "2026-04-14T09:45:00Z",
"next_sync": "2026-04-14T10:00:00Z",
"error": null,
"events_synced": 342,
"auto_record": true,
"connected_at": "2026-02-10T08:30:00Z"
}
]
}
Returns information about connected calendar integrations, including sync status, last sync time, and any errors.
Response
Array of connected calendar objects.
Show Calendar object
Show Calendar object
Calendar connection identifier.
Calendar provider:
google or outlook.The email address associated with this calendar.
Connection status:
active, syncing, error, or disconnected.ISO 8601 timestamp of the last successful sync.
ISO 8601 timestamp of the next scheduled sync.
Error message if status is
error. null otherwise.Total number of events synced from this calendar.
Whether auto-recording is enabled for this calendar.
ISO 8601 timestamp when this calendar was connected.
curl https://api.mavioapp.com/v1/calendar/sync \
-H "Authorization: Bearer mvo_live_abc123"
sync = client.calendar.sync_status()
const sync = await client.calendar.syncStatus();
{
"calendars": [
{
"id": "cal_a1b2c3d4",
"provider": "google",
"email": "alice@example.com",
"status": "active",
"last_sync": "2026-04-14T09:45:00Z",
"next_sync": "2026-04-14T10:00:00Z",
"error": null,
"events_synced": 342,
"auto_record": true,
"connected_at": "2026-02-10T08:30:00Z"
}
]
}
⌘I