Activity #392
User #101 RSVP'd going Event #41
1/10/2026, 8:36:38 PM
Overview
event-rsvps / #392
User #101 RSVP'd going Event #41
1/10/2026, 8:36:38 PM
User #101 RSVP'd going Event #41
1/10/2026, 8:36:38 PM
View recordUser #101 RSVP'd going Event #41 · 1/10/2026, 8:36:38 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/392" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/392" ); 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/392"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/392"
)
event_rsvp = res.json() Response
{
"id": 392,
"eventId": 41,
"userId": 101,
"status": "going",
"respondedAt": "2026-01-10T20:36:38.681Z"
}