Activity #88
User #199 RSVP'd going Event #9
11/28/2025, 3:08:05 PM
Overview
event-rsvps / #88
User #199 RSVP'd going Event #9
11/28/2025, 3:08:05 PM
User #199 RSVP'd going Event #9
11/28/2025, 3:08:05 PM
View recordUser #199 RSVP'd going Event #9 · 11/28/2025, 3:08:05 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/88" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/88" ); const eventRsvp = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/event-rsvps.d.ts https://example-data.com/types/event-rsvps.d.ts
import type { EventRsvp } from "./types/event-rsvps";
const res = await fetch(
"https://example-data.com/api/v1/event-rsvps/88"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/88"
)
event_rsvp = res.json() Response
{
"id": 88,
"eventId": 9,
"userId": 199,
"status": "going",
"respondedAt": "2025-11-28T15:08:05.883Z"
}