showings / #167
- listingId
- Townhouse in Jettburgh · Jettburgh
- prospectUserId
- 183
- scheduledAt
- status
- scheduled
- notes
- Atavus summa voco administratio tabgo cohaero.
- createdAt
Component variants
Medium
#167
#167
Small
showings/167 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/167" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/167"
);
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/167"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/167"
)
showing = res.json() {
"id": 167,
"listingId": 62,
"prospectUserId": 183,
"scheduledAt": "2024-12-24T05:29:02.151Z",
"status": "scheduled",
"notes": "Atavus summa voco administratio tabgo cohaero.",
"createdAt": "2024-12-13T02:18:33.843Z"
}