calendar-events
calendar-events
Page 2 of 10.
- Onboarding Session · 3/15/2026
- Off-site Planning · 6/13/2026
- Product Review · 8/1/2026
- Security Training · 3/20/2026
- Quarterly Review · 4/9/2026
- Retrospective · 3/25/2026
- Architecture Review · 4/6/2026
- Retrospective · 4/30/2026
- Team Lunch · 8/13/2026
- Team Lunch · 3/10/2026
- Design Critique · 2/21/2026
- Onboarding Session · 5/14/2026
- Team Standup · 4/6/2026
- Demo Day · 6/4/2026
- Budget Review · 4/12/2026
- 1:1 with Manager · 7/17/2026
- Design Critique · 7/26/2026
- Team Standup · 7/12/2026
- Quarterly Review · 3/28/2026
- Budget Review · 4/21/2026
- Team Lunch · 5/10/2026
- Strategy Workshop · 4/1/2026
- Demo Day · 6/7/2026
- Retrospective · 3/14/2026
- Mar15
Onboarding Session
7:16 AM · Zoom
- Jun13
Off-site Planning
6:13 AM · Cafeteria
- Aug1
Product Review
4:44 AM · Office - Floor 3
- Mar20
Security Training
11:05 AM · Zoom
- Apr9
Quarterly Review
8:55 PM · Google Meet
- Mar25
Retrospective
11:22 PM · Google Meet
- Apr6
Architecture Review
10:15 AM · Office - Floor 3
- Apr30
Retrospective
12:57 PM · Zoom
- Aug13
Team Lunch
1:43 AM · Google Meet
- Mar10
Team Lunch
6:48 AM
- Feb21
Design Critique
2:26 AM
- May14
Onboarding Session
3:26 AM · Conference Room A
- Apr6
Team Standup
3:53 AM · Conference Room B
- Jun4
Demo Day
2:32 PM · Conference Room B
- Apr12
Budget Review
2:23 PM · Conference Room A
- Jul17
1:1 with Manager
12:51 AM · Microsoft Teams
- Jul26
Design Critique
11:50 AM · Rooftop
- Jul12
Team Standup
6:46 AM
- Mar28
Quarterly Review
4:35 PM · Conference Room B
- Apr21
Budget Review
12:44 AM · Office - Floor 3
- May10
Team Lunch
6:16 PM · Microsoft Teams
- Apr1
Strategy Workshop
10:05 PM · Conference Room A
- Jun7
Demo Day
9:07 PM · Microsoft Teams
- Mar14
Retrospective
2:44 PM · Google Meet
Onboarding Session
7:16 AM – 7:16 AM
Zoom
Cometes coniecto cuppedia capitulus dens vestigium suffragium.
Off-site Planning
6:13 AM – 12:40 PM
Cafeteria
Crux bellicus circumvenio officia vulgus unus.
Product Review
4:44 AM – 8:55 AM
Office - Floor 3
Alius corona suscipit sollers tot tabesco terror.
Security Training
11:05 AM – 5:19 PM
Zoom
Deprecator subseco sto tui clementia ciminatio caste.
Quarterly Review
8:55 PM – 8:55 PM
Google Meet
Bestia vita vulnero xiphias.
Retrospective
11:22 PM – 11:22 PM
Google Meet
Claudeo uxor curia adiuvo mollitia eius cubicularis curto tabgo ciminatio.
Showing first 6 of 24 on this page.
curl -sS \
"https://example-data.com/api/v1/calendar-events?limit=25"const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = await res.json();import type { CalendarEvent, ListEnvelope } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events?limit=25"
);
const { data, meta } = (await res.json()) as ListEnvelope<CalendarEvent>;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events",
params={"limit": 25},
)
data = res.json() {
"data": [
{
"id": 25,
"ownerUserId": 12,
"title": "Onboarding Session",
"description": "Cometes coniecto cuppedia capitulus dens vestigium suffragium.",
"startAt": "2026-03-15T07:16:38.023Z",
"endAt": "2026-03-16T07:16:38.023Z",
"isAllDay": true,
"location": "Zoom",
"attendeeUserIds": [
211,
200,
190,
61,
54
],
"createdAt": "2026-04-15T22:40:15.662Z",
"updatedAt": "2026-04-23T12:44:22.125Z"
},
{
"id": 26,
"ownerUserId": 12,
"title": "Off-site Planning",
"description": "Crux bellicus circumvenio officia vulgus unus.",
"startAt": "2026-06-13T06:13:51.370Z",
"endAt": "2026-06-13T12:40:29.239Z",
"isAllDay": false,
"location": "Cafeteria",
"attendeeUserIds": [],
"createdAt": "2026-03-10T03:51:11.452Z",
"updatedAt": "2026-05-16T15:49:51.703Z"
},
{
"id": 27,
"ownerUserId": 13,
"title": "Product Review",
"description": "Alius corona suscipit sollers tot tabesco terror.",
"startAt": "2026-08-01T04:44:50.274Z",
"endAt": "2026-08-01T08:55:31.352Z",
"isAllDay": false,
"location": "Office - Floor 3",
"attendeeUserIds": [],
"createdAt": "2026-05-14T20:39:23.442Z",
"updatedAt": "2026-05-14T23:54:22.517Z"
}
],
"meta": {
"page": 2,
"limit": 24,
"total": 599,
"totalPages": 25
},
"links": {
"self": "/api/v1/calendar-events?page=2",
"next": "/api/v1/calendar-events?page=3",
"prev": "/api/v1/calendar-events?page=1"
}
}