Tiquo
Integrations OverviewAirtableAsanaSlackGoogle AnalyticsMetabaseMixpanelPendoSegmentTableau (PAT)ActiveCampaignBrevoEmarsys Core API (WSSE)EventbriteFacebookGoogle AdsHighLevelInstagramKlaviyoMailchimpMailgunMicrosoft AdsSendGridTwitter (v2)HubSpotNotionAcuity SchedulingAirtable (Personal Access Token)BasecampCal.com (v2)CalendlyClickUpCodaConfluence Data CenterExpensifyGoogle CalendarGoogle SheetHarvestLinearMicrosoft Power BIMicrosoft TeamsMindbodyMondayOpenAIPerplexityPingboardPivotal TrackerProductboardQuickbaseServiceM8ServiceNowTeamworkTickTickTimelyTodoistTrafftTrelloWrikefal.aixAIZendeskIntercomAircall (OAuth)DixaFreshDeskFreshserviceFrontPlainRingCentralZoho DeskBrazeDialpadGoogleMicrosoftOutlookPodiumSednaSharePoint OnlineTwilioWhatsApp BusinessZoho MailBambooHRADPDeelEmployment HeroGustoHibob Service UserNamelyOracle Fusion Cloud (HCM)PaychexPayfitPaylocityPersonioRipplingSAP SuccessFactorsSage HRTSheetsUKG ProUKG ReadyWorkdayZoho PeopleQuickBooksBuildiumExact OnlineFreshBooksIntuitNetSuitePennylaneSageSage IntacctTwinfieldUnanetWave AccountingXeroZoho BooksSalesforceAffinityAttioCopperFreshsalesGainsight CCInsightlyKustomerMedalliaPipedriveTwenty CRMZoomInfoApaleoMewsMicrosoft Business CentralOdooSAP ConcurZuoraAcceloCoupa CompassZoho InvoiceAnrokAvalaraDocuSignDropbox SignPandadocSignNowLinkedInSplitwiseTikTok AdsJotformQualtricsRefinerTypeformShopifyCin7 CoreGoogle MapsRingoverListrakRydooTalentLMSApple Business ManagerCrunchbaseRocketReachOcean.ioFreepikEnergy Performance Certificates (Gov.UK)JustworksGristSAP S/4HANA Cloud3CX8x8Adobe CommerceBirdCloudbedsConstant ContactBufferCustomer.ioCrispFreeAgentGreenhouseMeta Marketing APIMollienocrm.ioOomnitzaDigitsPylonSage 200ShopwareAnvilShippoEasyPostAltrataMicrosoft PeopleMicrosoft IntuneCloudTalkGoogle FormsMaximizerMicrosoft PlannerSalesmsgSellercloudTallyTimifyUpsalesCleverReachHeymarketMailjetPleoProvenExpertTelegramToggl TrackASSA ABLOY Vingcard VisionlineASSA ABLOY Vingcard VostioASSA ABLOY TESA HotelASSA ABLOY SMARTairSalto KSSalto Space OnlineDormakabaOmnitecHotekTT LockWebLockISEOKleverKeyAperioISONASHIDSouthcoThird MillenniumSTidAxis CommunicationsBooking.comExpediaHotels.comAirbnbGoogle HotelsTripadvisorAgodaHotelbedsTravelgateXHyperguestRoibosReconlineTraviaOpenGDS.comMG BedbankDidatravelHotelREZHRSHotelnetworkGetaroomWinkBookeasyVRBOInntopiaHookusbookusHipcampSpot2niteCamping VisionMinistry of VillasTrip.comTravelokaTiketMakeMyTripHoteripKlookeDreamsSzallasEmerging Travel GroupCheck24Bed-and-Breakfast.itWorld2Meet (W2M)Ctoutvert / SecureholidayDespegarPriceTravelRoombeastMitchell CorpHRS AustraliaResonlineHostelworldHostelhopTablet MichelinMr & Mrs SmithHopperHotel TonightPitchupMoveriiLocalOTAAlaricBooknpayCultbookingGuestTractionLevartWeSpeakMake.comZapierPricelabsPricepointRategenieElastic HotelRoom Price GenieTurbosuiteUber EatsDeliverooDoorDashBolt Food
API and AuthenticationHosted Package

Installation

Install the Tiquo Hosted Package on Webflow and other website builders that support custom code

Installation

For a working reference, explore the Tiquo Example Hosted Package Project.

1. Enable Website SDK

In Tiquo, go to Settings > Website SDK.

Enable Website SDK and copy your public key.

2. Add your website domain

Add the website domain where the script will run.

Examples:

  • Entering https://www.example.com/pricing is saved as example.com
  • Entering www.example.com is saved as example.com
  • Entering shop.example.com is saved as shop.example.com

If you enter the root domain, Tiquo treats the root domain and www version as the same website. Other subdomains are treated separately.

3. Add the Hosted Package to the site head

Paste the complete block inside the site <head>, or in the head custom-code area provided by your website builder.

The Hosted Package is compatible with Webflow and other website builders, including Wix, Squarespace, Framer, Shopify, and any builder that lets you add custom code.

<style>
  html:not([data-tiquo-auth-ready="true"]) [data-tiquo-show],
  html:not([data-tiquo-auth-ready="true"]) [data-tiquo-customer],
  html:not([data-tiquo-auth-ready="true"]) [data-tiquo-form="passwordless-login"],
  html:not([data-tiquo-auth-ready="true"]) [data-tiquo-form="passwordless-signup"] {
    visibility: hidden !important;
  }
</style>
<script
  src="https://tiquo.app/tiquo/v1/tiquo.js"
  data-tiquo-public-key="pk_dom_your_public_key"
  data-tiquo-consent="anonymous"
  defer
></script>

Replace pk_dom_your_public_key with your Website SDK public key.

Use the script URL shown above. It loads the current Hosted Package behavior, including session restoration without a logged-out flash, passwordless form handling, profile-photo image data attributes, memberships, customer-flow service catalogs, locked service-booking embeds, secure authenticated iframe handoff, automatically resizing embeds, formatted order and booking fields, and hidden list templates.

Webflow notes

Add the complete block in:

  • Project Settings > Custom Code > Head Code
  • Page Settings > Inside <head> tag

Publish the site after saving.

Check that it installed correctly

Open the website in a browser and run this in the console:

window.Tiquo.version

If the script loaded, it returns the Hosted Package version.

To send a test event:

window.Tiquo.track("test_event", {
  eventName: "Hosted Package Test"
});

If the domain and public key are configured correctly, the event appears in Tiquo website analytics.

Sur cette page