showings / #226
- listingId
- Commercial Space in New Wendellville · New Wendellville
- prospectUserId
- 75
- scheduledAt
- status
- completed
- notes
- Solum cunctatio abeo tenax et considero.
- createdAt
Component variants
Medium
#226
#226
Small
showings/226 Related
curl -sS \
"https://example-data.com/api/v1/showings/226" \
-H "Accept: application/json"const res = await fetch(
"https://example-data.com/api/v1/showings/226"
);
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/226"
);
const showing = (await res.json()) as Showing;import requests
res = requests.get(
"https://example-data.com/api/v1/showings/226"
)
showing = res.json() {
"id": 226,
"listingId": 85,
"prospectUserId": 75,
"scheduledAt": "2024-12-12T16:08:53.665Z",
"status": "completed",
"notes": "Solum cunctatio abeo tenax et considero.",
"createdAt": "2024-11-24T07:03:58.887Z"
}