Activity #425
User #246 RSVP'd going Event #44
6/7/2025, 5:58:10 AM
Overview
event-rsvps / #425
User #246 RSVP'd going Event #44
6/7/2025, 5:58:10 AM
User #246 RSVP'd going Event #44
6/7/2025, 5:58:10 AM
View recordUser #246 RSVP'd going Event #44 · 6/7/2025, 5:58:10 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/425" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/425" ); 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/425"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/425"
)
event_rsvp = res.json() Response
{
"id": 425,
"eventId": 44,
"userId": 246,
"status": "going",
"respondedAt": "2025-06-07T05:58:10.546Z"
}