Seegars Fence Company
Fence/gate installer (Carolinas). checkServiceArea is live — geocodes an address and reports whether it's inside Seegars' service area, plus the branch…
Fence/gate installer (Carolinas). checkServiceArea is live — geocodes an address and reports whether it's inside Seegars' service area, plus the branch that would handle it. estimateFencePrice (the actual priced estimate) is a stub — see its notImplemented reason.
Domain: seegarsfence.com
Also known as: Seegars Fence, Seegars Fence Company, seegarsfence.com
Call it directly
bowmark.providers.seegarsfence.checkServiceArea(args: object): Promise<CheckServiceAreaResult>Functions
| Function | What it does |
|---|---|
checkServiceArea | Geocodes a free-text address (address, e.g. "301 Fayetteville St, Raleigh, NC 27601") against Seegars Fence's own address-lookup API, then checks it against the branch's published… |
Types
interface SeegarsBranch {
id: number;
name: string;
address1: string;
city: string;
state: string;
zip: string;
salesEmail: string;
salesPhone: string;
webSite: string;
outsideServiceAreaText: string;
serviceArea: string;
}
interface SeegarsGeocodedAddress {
address1: string;
city: string;
state: string;
zip: string;
displayName: string;
latitude: number;
longitude: number;
}
interface CheckServiceAreaResult {
address: SeegarsGeocodedAddress;
inServiceArea: boolean;
branch: SeegarsBranch;
}