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