curl --request PATCH \
--url https://api.northreports.com/v1/reports/{reportId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"address": "<string>",
"city": "<string>",
"state": "<string>",
"zip": "<string>",
"price": 123,
"beds": 123,
"baths": 123,
"sqft": 123,
"year_built": 123,
"property_type": "<string>",
"description": "<string>",
"status": "<string>",
"is_draft": true,
"executive_summary": "<string>",
"show_comps_on_report": true,
"show_neighborhood_on_report": true,
"show_social_media_on_report": true,
"show_showings_on_report": true,
"show_agent_insights_on_report": true
}
'