Activity #64
User #88 RSVP'd going Event #6
3/31/2026, 9:08:27 PM
Overview
event-rsvps / #64
User #88 RSVP'd going Event #6
3/31/2026, 9:08:27 PM
User #88 RSVP'd going Event #6
3/31/2026, 9:08:27 PM
View recordUser #88 RSVP'd going Event #6 · 3/31/2026, 9:08:27 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/64" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/64" ); 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/64"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/64"
)
event_rsvp = res.json() Response
{
"id": 64,
"eventId": 6,
"userId": 88,
"status": "going",
"respondedAt": "2026-03-31T21:08:27.424Z"
}