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

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)

Body

application/json
showing_date
string<date-time>
scheduled_date
string<date-time>
attendee_name
string
attendee_email
string<email>
attendee_phone
string
agent_name
string
feedback
string
rating
integer
Required range: 1 <= x <= 5
interested
boolean
event_type
enum<string>
Available options:
showing,
open_house
title
string
attendees_count
integer
unique_showing_key
string

Unique identifier for the showing event from external systems. Used for deduplication and integration purposes.

showing_time_start
string<date-time>

Start time of the showing event. Used for API entries to specify exact start time.

showing_time_end
string<date-time>

End time of the showing event. Used for API entries to specify exact end time.

Response

Showing updated successfully

data
object
message
string