Activity #452
User #205 RSVP'd going Event #47
7/22/2025, 2:05:49 PM
Overview
event-rsvps / #452
User #205 RSVP'd going Event #47
7/22/2025, 2:05:49 PM
User #205 RSVP'd going Event #47
7/22/2025, 2:05:49 PM
View recordUser #205 RSVP'd going Event #47 · 7/22/2025, 2:05:49 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/452" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/452" ); 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/452"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/452"
)
event_rsvp = res.json() Response
{
"id": 452,
"eventId": 47,
"userId": 205,
"status": "going",
"respondedAt": "2025-07-22T14:05:49.614Z"
}