Skip to contentSkip to navigationSkip to topbar
On this page
Looking for more inspiration?Visit the
(information)
You're in the right place! Segment documentation is now part of Twilio Docs. The content you are used to is still here—just in a new home with a refreshed look.

GoSquared Destination


Destination Info
  • Accepts Page, Identify and Track calls.
  • Refer to it as GoSquared in the Integrations object
Connection Modes
Device-modeCloud-mode
Web Web
Mobile Mobile
Server Server

Getting Started

getting-started page anchor

When you enable GoSquared in the Segment web app, your changes appear in the Segment CDN in about 45 minutes, and then Analytics.js starts asynchronously loading GoSquared's Tracker onto your page.

This means you should remove any manual integration of GoSquared.

Your GoSquared Now dashboard will instantly start showing the number of visitors online, and if you're using identify, users will start appearing in People Analytics.

GoSquared supports mobile, webpage and server-side tracking.


When you enter your GoSquared site token into Segment, website tracking will automatically start.


Mobile and Server-Side Tracking

mobile-and-server-side-tracking page anchor

To track data using Segment's mobile and server-side sources, you will need to enter a GoSquared API Key, which can be created in your GoSquared account(link takes you to an external page). The API Key must have "Write Tracking" access. All functionality is supported by mobile and server-side tracking.


When you call page, we call GoSquared's track(link takes you to an external page) to track a pageview. By default the Segment JavaScript snippet includes a call to page so you don't need to add it manually.

Page calls will be tracked from any Segment library, but GoSquared's real-time analytics will be most accurate using front-end website tracking.


When you call identify, we call GoSquared's identify(link takes you to an external page). Once identified with a userId, that person (along with historical browsing information from before they were identified) will be visible and queryable in GoSquared People Analytics(link takes you to an external page).

GoSquared expects a slightly different set of traits from us, so we start by transforming the traits to match their format.

Our traitGoSquared property
firstNamefirst_name
lastNamelast_name
createdAtcreated_at
titlecompany_position
industrycompany_industry

GoSquared recognises certain traits as "special" and requires all other traits to be sent under a namespace of custom. The Segment code handles all of this, sending recognised special properties(link takes you to an external page) and custom properties in the correct places.


When you call track, we call GoSquared's event(link takes you to an external page) with the same arguments.


GoSquared supports the screen method by converting it into an event, with an event name of "Screen: " + name.


GoSquared converts the group method into an identify call, to set the company details for a user. Only one company/group is supported per user.


GoSquared supports our Ecommerce tracking API, so the Order Completed event will be tracked as a GoSquared Transaction(link takes you to an external page).


You can send computed traits and audiences generated using Engage to this destination as a user property. To learn more about Engage, schedule a demo(link takes you to an external page).

For user-property destinations, an identify call is sent to the destination for each user being added and removed. The property name is the snake_cased version of the audience name, with a true/false value to indicate membership. For example, when a user first completes an order in the last 30 days, Engage sends an Identify call with the property order_completed_last_30days: true. When the user no longer satisfies this condition (for example, it's been more than 30 days since their last order), Engage sets that value to false.

When you first create an audience, Engage sends an Identify call for every user in that audience. Later audience syncs only send updates for users whose membership has changed since the last sync.

(information)

Real-time to batch destination sync frequency

Real-time audience syncs to GoSquared may take six or more hours for the initial sync to complete. Upon completion, a sync frequency of two to three hours is expected.


Segment lets you change these destination settings from the Segment app without having to touch any code.

Property nameTypeRequiredDescription
Anonymize IPboolean

Optional

Enable if you need to anonymize the IP address of visitors to your website.

Default: false

API Key (Server-side)string

Optional

Generate your server-side API key here: https://www.gosquared.com/settings/api


Site Tokenstring

Optional

You can find your Site Token by viewing the GoSquared Integration guide(link takes you to an external page). It should look something like GSN-123456-A.


Cookie Domainstring

Optional

Use this if you wish to share GoSquared’s tracking cookies across subdomains, .example.com will enable shared tracking across all example’s subdomains. By default, cookies are set on the current domain (including subdomain) only.


Track Hashboolean

Optional

Enable if you'd like page hashes to be tracked alongside the page URL. By default, example.com/about#us will be tracked as example.com/about.

Default: false

Track Localboolean

Optional

Enable to track data on local pages/sites (using the file:// protocol, or on localhost). This helps prevent local development from polluting your stats.

Default: false

Track Parametersboolean

Optional

Disable to ignore URL querystring parameters from the page URL, for example /home?my=query&string=true will be tracked as /home if this is set to disabled.

Default: true

Use Cookiesboolean

Optional

Disable this if you don't want to use cookies

Default: true