showings / #160
- listingId
- House in Beaumont · Beaumont
- prospectUserId
- 44
- scheduledAt
- status
- scheduled
- notes
- Caput vir suus necessitatibus communis stella quod.
- createdAt
Component variants
Medium
#160
#160
Small
showings/160 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/160" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/160"
);
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/160"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/160"
)
showing = res.json() {
"id": 160,
"listingId": 59,
"prospectUserId": 44,
"scheduledAt": "2024-12-12T16:07:36.181Z",
"status": "scheduled",
"notes": "Caput vir suus necessitatibus communis stella quod.",
"createdAt": "2024-11-22T15:06:49.421Z"
}