showings #323
- listingId
- Condo in Uptonstad · Uptonstad
- prospectUserId
-
Myrtie Daniel @myrtie_daniel33
- scheduledAt
- status
- no_show
- notes
- Autus utique versus desolo apparatus cauda.
- createdAt
Overview
showings / #323
#323
#323
Request
curl example
curl -sS \ "https://example-data.com/api/v1/showings/323" \ -H "Accept: application/json"
JavaScript example
const res = await fetch( "https://example-data.com/api/v1/showings/323" ); const showing = await res.json();
TypeScript example
// Download once: mkdir -p types && curl -o types/showings.d.ts https://example-data.com/types/showings.d.ts
import type { Showing } from "./types/showings";
const res = await fetch(
"https://example-data.com/api/v1/showings/323"
);
const showing = (await res.json()) as Showing; Python example
import requests
res = requests.get(
"https://example-data.com/api/v1/showings/323"
)
showing = res.json() Response
{
"id": 323,
"listingId": 118,
"prospectUserId": 45,
"scheduledAt": "2024-12-24T15:16:29.148Z",
"status": "no_show",
"notes": "Autus utique versus desolo apparatus cauda.",
"createdAt": "2024-12-07T18:26:12.784Z"
}