showings / #150
- listingId
- Condo in Ramonport · Ramonport
- prospectUserId
- 148
- scheduledAt
- status
- completed
- notes
- Thema auditor video congregatio amor.
- createdAt
Component variants
Medium
#150
#150
Small
showings/150 Related
References
curl -sS \
"https://example-data.com/api/v1/showings/150" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/150"
);
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/150"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/150"
)
showing = res.json() {
"id": 150,
"listingId": 56,
"prospectUserId": 148,
"scheduledAt": "2024-10-31T03:46:18.506Z",
"status": "completed",
"notes": "Thema auditor video congregatio amor.",
"createdAt": "2024-10-30T23:44:33.889Z"
}