showings / #148
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 123
- scheduledAt
- status
- cancelled
- notes
- Tamdiu adhuc benigne.
- createdAt
Component variants
Medium
#148
#148
Small
showings/148 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/148" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/148"
);
const showing = await res.json();import type { Showing } from "https://example-data.com/types/showings.d.ts";
const res = await fetch(
"https://example-data.com/api/v1/showings/148"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/148"
)
showing = res.json() {
"id": 148,
"listingId": 56,
"prospectUserId": 123,
"scheduledAt": "2025-01-18T21:13:13.518Z",
"status": "cancelled",
"notes": "Tamdiu adhuc benigne.",
"createdAt": "2025-01-06T06:51:30.146Z"
}