Activity #941
User #81 RSVP'd going Event #104
5/3/2026, 12:11:18 PM
Overview
event-rsvps / #941
User #81 RSVP'd going Event #104
5/3/2026, 12:11:18 PM
User #81 RSVP'd going Event #104
5/3/2026, 12:11:18 PM
View recordUser #81 RSVP'd going Event #104 · 5/3/2026, 12:11:18 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/941" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/941" ); 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/941"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/941"
)
event_rsvp = res.json() Response
{
"id": 941,
"eventId": 104,
"userId": 81,
"status": "going",
"respondedAt": "2026-05-03T12:11:18.706Z"
}