May
21
Thu
Team Standup
8:22 AM – 1:35 PM
Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.
calendar-events / #220
8:22 AM – 1:35 PM
Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.
Team Standup
8:22 AM
curl -sS \
"https://example-data.com/api/v1/calendar-events/220" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/calendar-events/220"
);
const calendarEvent = await res.json();import type { CalendarEvent } from "https://example-data.com/types/calendar-events.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/calendar-events/220"
);
const calendarEvent = (await res.json()) as CalendarEvent;import requests
res = requests.get(
"https://example-data.com/api/v1/calendar-events/220"
)
calendar_event = res.json() {
"id": 220,
"ownerUserId": 94,
"title": "Team Standup",
"description": "Pecus vix abstergo argumentum adhaero textilis dolores vinum ratione centum.",
"startAt": "2026-05-21T08:22:37.883Z",
"endAt": "2026-05-21T13:35:55.762Z",
"isAllDay": false,
"location": null,
"attendeeUserIds": [
90
],
"createdAt": "2026-04-02T08:26:27.719Z",
"updatedAt": "2026-04-22T13:40:44.170Z"
}