Activity #1309
User #143 RSVP'd going Event #143
9/11/2025, 8:07:22 AM
Overview
event-rsvps / #1309
User #143 RSVP'd going Event #143
9/11/2025, 8:07:22 AM
User #143 RSVP'd going Event #143
9/11/2025, 8:07:22 AM
View recordUser #143 RSVP'd going Event #143 · 9/11/2025, 8:07:22 AM
Request
curl example
curl -sS \ "https://example-data.com/api/v1/event-rsvps/1309" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/event-rsvps/1309" ); 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/1309"
);
const eventRsvp = (await res.json()) as EventRsvp; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/event-rsvps/1309"
)
event_rsvp = res.json() Response
{
"id": 1309,
"eventId": 143,
"userId": 143,
"status": "going",
"respondedAt": "2025-09-11T08:07:22.593Z"
}