Activity #1062
User #50 RSVP'd going Event #118
3/9/2026, 10:51:30 AM
Overview
event-rsvps / #1062
User #50 RSVP'd going Event #118
3/9/2026, 10:51:30 AM
User #50 RSVP'd going Event #118
3/9/2026, 10:51:30 AM
View recordUser #50 RSVP'd going Event #118 · 3/9/2026, 10:51:30 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/1062" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/1062" ); 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/1062"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/1062"
)
event_rsvp = res.json() Response
{
"id": 1062,
"eventId": 118,
"userId": 50,
"status": "going",
"respondedAt": "2026-03-09T10:51:30.089Z"
}