Activity #616
User #47 RSVP'd going Event #67
11/30/2025, 3:01:06 PM
Overview
event-rsvps / #616
User #47 RSVP'd going Event #67
11/30/2025, 3:01:06 PM
User #47 RSVP'd going Event #67
11/30/2025, 3:01:06 PM
View recordUser #47 RSVP'd going Event #67 · 11/30/2025, 3:01:06 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/616" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/616" ); 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/616"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/616"
)
event_rsvp = res.json() Response
{
"id": 616,
"eventId": 67,
"userId": 47,
"status": "going",
"respondedAt": "2025-11-30T15:01:06.202Z"
}