showings / #162
- listingId
- Townhouse in Fort Hunter · Fort Hunter
- prospectUserId
- 30
- scheduledAt
- status
- scheduled
- notes
- Cursim temptatio creptio vomito toties textilis adversus cultellus.
- createdAt
Component variants
Medium
#162
#162
Small
showings/162 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/162" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/162"
);
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/162"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/162"
)
showing = res.json() {
"id": 162,
"listingId": 60,
"prospectUserId": 30,
"scheduledAt": "2024-12-16T16:41:15.419Z",
"status": "scheduled",
"notes": "Cursim temptatio creptio vomito toties textilis adversus cultellus.",
"createdAt": "2024-12-08T21:15:47.209Z"
}