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