Bowmark AIdocs

Tamarack Resort

Tamarack Resort's own direct-managed lodging booking engine (Inntopia RTP) — real availability and price per unit type for a date range and party size,…

Tamarack Resort's own direct-managed lodging booking engine (Inntopia RTP) — real availability and price per unit type for a date range and party size, straight from the site's own search widget, browserless.

Domain: tamarackidaho.com

Also known as: Tamarack Resort, Tamarack, tamarackidaho, Tamarack Idaho

Call it directly

bowmark.providers.tamarackidaho.searchLodging(args: tamarackidahoSearchArgs): Promise<tamarackidahoSearchResult>

Functions

FunctionWhat it does
searchLodgingSearches Tamarack Resort's own direct-managed lodging (the Lodge at Osprey Meadows, the Village at Tamarack Resort, and Tamarack Homes and Cottages — not the golf tee-time flow, a different…

Types

interface tamarackidahoSearchArgs {
  arrivalDate: string;
  departureDate: string;
  adultCount: number;
  childCount?: number;
}

interface tamarackidahoSearchResult {
  arrivalDate: string;
  departureDate: string;
  adultCount: number;
  childCount: number;
  units: tamarackidahoUnit[];
}

interface tamarackidahoUnit {
  supplierId: string;
  supplierName: string;
  productId: string;
  unitName: string;
  totalPrice: number;
}