Activity #681
User #132 RSVP'd going Event #75
12/25/2025, 3:11:57 AM
Overview
event-rsvps / #681
User #132 RSVP'd going Event #75
12/25/2025, 3:11:57 AM
User #132 RSVP'd going Event #75
12/25/2025, 3:11:57 AM
View recordUser #132 RSVP'd going Event #75 · 12/25/2025, 3:11:57 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/681" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/681" ); 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/681"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/681"
)
event_rsvp = res.json() Response
{
"id": 681,
"eventId": 75,
"userId": 132,
"status": "going",
"respondedAt": "2025-12-25T03:11:57.042Z"
}