Activity #499
User #201 RSVP'd going Event #51
11/20/2025, 6:13:58 PM
Overview
event-rsvps / #499
User #201 RSVP'd going Event #51
11/20/2025, 6:13:58 PM
User #201 RSVP'd going Event #51
11/20/2025, 6:13:58 PM
View recordUser #201 RSVP'd going Event #51 · 11/20/2025, 6:13:58 PM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/499" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/499" ); 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/499"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/499"
)
event_rsvp = res.json() Response
{
"id": 499,
"eventId": 51,
"userId": 201,
"status": "going",
"respondedAt": "2025-11-20T18:13:58.681Z"
}