Activity #324
User #163 RSVP'd going Event #34
4/24/2026, 12:59:07 PM
Overview
event-rsvps / #324
User #163 RSVP'd going Event #34
4/24/2026, 12:59:07 PM
User #163 RSVP'd going Event #34
4/24/2026, 12:59:07 PM
View recordUser #163 RSVP'd going Event #34 · 4/24/2026, 12:59:07 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/324" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/324" ); 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/324"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/324"
)
event_rsvp = res.json() Response
{
"id": 324,
"eventId": 34,
"userId": 163,
"status": "going",
"respondedAt": "2026-04-24T12:59:07.228Z"
}