Northpoint Asset Management - SACRAMENTO
  DRE License Number:  01875453   
 

 
 

Redirecting to Rentals

If you are not redirected, click here.

(function() { // Keywords to detect Propertyware application URLs const keywords = ['apply', 'application', 'northpoint']; // Base URL for Findigs handoff const findigsURL = 'https://api.findigs.com/rental_applications/lookup/?unit_id='; // Function to extract property ID from the Propertyware URL function getPropertyID() { const currentURL = window.location.href; const idMatch = currentURL.match(/\/(\d+)$/); // Matches the number at the end of the URL return idMatch ? idMatch[1] : null; // Returns the property ID or null if not found } // Function to check if the current page URL contains the keywords function shouldRedirect() { const currentURL = window.location.href; return keywords.some(keyword => currentURL.includes(keyword)); } // Redirect if the current page URL matches the criteria and a property ID is found const propertyID = getPropertyID(); if (shouldRedirect() && propertyID) { window.location.href = findigsURL + propertyID; } })();