Skip to main content
GET
/
v1
/
showings
/
{showingId}
Get a specific showing
curl --request GET \
  --url https://api.northreports.com/v1/showings/{showingId} \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "north_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "showing_date": "2023-11-07T05:31:56Z",
    "scheduled_date": "2023-11-07T05:31:56Z",
    "attendee_name": "<string>",
    "attendee_email": "<string>",
    "attendee_phone": "<string>",
    "agent_name": "<string>",
    "feedback": "<string>",
    "rating": 3,
    "interested": true,
    "event_type": "showing",
    "title": "<string>",
    "attendees_count": 0,
    "unique_showing_key": "<string>",
    "showing_time_start": "2023-11-07T05:31:56Z",
    "showing_time_end": "2023-11-07T05:31:56Z",
    "created_at": "2023-11-07T05:31:56Z",
    "updated_at": "2023-11-07T05:31:56Z"
  }
}

Authorizations

Authorization
string
header
required

API key authentication. Include your API key in the Authorization header:

Authorization: Bearer north_sk_live_xxxxxxxxxxxx

Path Parameters

showingId
string
required

The showing identifier. Can be either:

  • A UUID (e.g., 550e8400-e29b-41d4-a716-446655440000)
  • A unique showing key (e.g., ext_12345)

Response

Successfully retrieved showing

data
object