squatch.js Reference
🔗 This content has been moved.
Please see our squatch.js reference content on GitHub for updated information.
🔗 Methods
🔗 ready
Squatch.js can't start safely making operations until it's "ready". This function detects that state.
Parameters
fnfunction A callback once Squatch.js is ready.
Examples
squatch.ready(function() {
  console.log("ready!");
  squatch.api().upsertUser();
});
Returns void 
🔗 autofill
Autofills a referral code into an element when someone has been referred. Uses WidgetApi.squatchReferralCookie behind the scenes.
Parameters
selectorstring Element class/id
Returns void 
Example
squatch.ready(function() {
  var element = document.getElementById('my_coupon');
  squatch.init({
    tenantAlias: "test_abzxg88g30tn2"
  });
  squatch.api().squatchReferralCookie().then(function(response) {
    element.value = response.codes["program-id"];
  });
});
🔗 autofill Troubleshooting
If experiencing difficulties with usage of autofill, first ensure that the squatch.js loader script is included on your initial landing page (the page that all your SaaSquatch user sharelinks redirect to) in order to allow it to create a 1st party cookie that can be properly retrieved.
🔗 submitEmail
Overrides the default function that submits the user email. If you have Security enabled, the email needs to be signed before it's submitted.
Parameters
fnfunction Callback function for the 'submit_email' event.
Examples
squatch.submitEmail(function(target, widget, email) {
  // Sign email and generate jwt token
  var jwt = 'token';
  widget.reload(email, jwt);
});
Returns void 
🔗 Widgets
Widgets is a factory for creating widgets. It's possible to build your own widgets using the
WidgetApi but most people will prefer to use these easy methods.
🔗 constructor
Initialize a new Widgets instance.
Parameters
tenantAliasstring The Tenant that you're using.domainstring The domain for API. Defaults tohttps://app.referralsaasquatch.com
Examples
Browser example
var widgets = new squatch.Widgets({tenantAlias:'test_12b5bo1b25125'});
Browserify/Webpack example
var Widgets = require('squatch-js').Widgets;
var widgets = new Widgets({tenantAlias:'test_12b5bo1b25125'});
Babel+Browserify/Webpack example
import {Widgets} from 'squatch-js';
let widgets = new Widgets({tenantAlias:'test_12b5bo1b25125'});
          🔗 upsertUser
This function calls the WidgetApi.upsert method, and it renders the widget if it is successful. Otherwise it shows the "error" widget.
Parameters
configobject Config detailsconfig.userObject The user details.config.user.idstring The user id.config.user.accountIdstring The user account id.config.user.firstNamestring The user's first name.config.user.lastNamestring The user's last name.config.user.emailstring The user's email.config.user.localestring The user's locale, used for Internationalization. The locale must be of the format 'language_COUNTRY' where the language code must be lowercase and the country code must be uppercase. The separator must be an underscore.config.user.countryCodestring The user's two letter ISO 3166-1 Alpha-2 country code.config.user.segmentsarray A list of operations for adding and removing the user from segments. Details about the supported operators and operations for adding and removing users from a segment can be found in our User Segmentation article.config.user.referableboolean Indicates if a user is referable or not. Use this in an upsert to indicate a user is no longer eligible to be referred.- Note: This flag shouldn't be used as part of the initial user upsert of a referred user as it will override the attribution.
 - Spelling Counts: Make sure that when using this flag you spell it correctly, using a single r. It should always be 
referableor the system will not pick up the value. 
config.user.referredByCodesarray This array is used to indicate who referred this user for Growth Automation programs.- Classic only 
config.user.referredByobject This object is used to pass in the referral code using the following fields.config.user.referredBy.codestring is the field in which the referrer's code is added.config.user.referredBy.isConvertedboolean tells the system whether or not the referral should be converted or not.
 config.user.referralCodesobject This is where you can optionally specify the referral codes for your growth automation programs.- Classic only 
config.user.referralCodestring This string can be optionally used to specify a referral code in a classic program for the user. config.user.shareLinksobject The primary custom shareLinks for different programs. If a given program does not have a referral code, one will be generated.config.user.imageUrlstring The user's image, optionally used in widgets, emails, and themes. If you provide an absolute profile image URL the minimum image size is 80px x 80px.config.user.dateUsTaxFormSubmittedinteger The timestamp of when a user's W-9 tax form was submitted. Used for W-9 Compliance on your tenant, if configured.config.user.customFieldsobject An object containing the custom fields for this user. Learn more about the available custom field functionality in our Custom Fields Developer Guide.
config.widgetTypeThe type of widget to be displayed.- For Growth Automation Programs:
referrerWidgetstring Widget content that lets people make referrals.conversionWidgetstring Widget content that shows that someone has been referred.partnerWidgetstring Widget content that lets partners refer people into a Partner Program.
 - Classic only For Classic Referral Programs:
REFERRER_WIDGETstring Widget content that lets people make referrals.CONVERSION_WIDGETstring Widget content that shows that someone has been referred.
 
Examples
Growth Automation Programs:
widgetType: "p/program-name/w/referrerWidget"Classic only Classic Referral Programs:
widgetType: "REFERRER_WIDGET"- For Growth Automation Programs:
 config.engagementMediumHow the widget is to be displayed.POPUPstring Displays the widget as a modal popup. Popups widgets are rendered on top of other elements in a page.EMBEDstring Displays the widget embedded in the page. An EmbedWidget is displayed inline as part of your page.
Examples
engagementMedium: "POPUP"config.jwtstring the JSON Web Token (JWT) that is used to validate the data (can be disabled)- Optional 
config.containerHTMLElement Or String An HTML Element or custom query selector used by squatch.js to append the widget iframe to. This takes precedence over the default "squatchembed" element. With a container value, your widget is hidden by default. Use the 'open()' method on the returned widget to show it. This only affects Embedded widgets. - Optional 
config.triggerString A query selector to find the trigger element for your Pop-Up widget (ex: ".myPopUpButton"). It takes presence over the default ".squatchpop" and only affects Pop-Up widgets. 
Example Request
For Growth Automation Platforms
var initObj = {
  user: {                               
    id: 'abc_123',                      
    accountId: 'abc_123',       
    email: 'john@example.com',                
    firstName: 'John',       
    lastName: 'Doe',
    locale: 'en_US',
    countryCode: 'US',
    imageUrl: 'https://www.example.com/profile/ab5111251125',
    referralCodes: {
      program-id1: 'JOHNDOECODE',
      program-id2: 'JOHNDOECODETWO'
    },
    shareLinks: {
      program-id1: 'http://example.com/free1',
      program-id2: 'http://example.com/free2'
    },
    referredByCodes: [
      'JANEDOE'
    ],
    segments: [
        'sampleSegment'
    ],
    dateUsTaxFormSubmitted: 1619647338270,
    customFields: {
        lastPurchaseDate: 1512152525513,
        plan: 'Pro+',
        phone: 19055551234,
        address: '123 Main st., City, State, Country, H0H0H0',
        shoeSize: 12.5,
        currency: 'USD'
      }
  },
  engagementMedium: 'EMBED',
  widgetType: '/p/program-name/w/referrerWidget',
  jwt: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiYWJjXzEyMyIsImFjY291bnRJZCI6ImFiY18xMjMiLCJlbWFpbCI6ImpvaG5AZXhhbXBsZS5jb20iLCJmaXJzdE5hbWUiOiJKb2huIiwibGFzdE5hbWUiOiJEb2UiLCJsb2NhbGUiOiJlbl9VUyIsInJlZmVycmVkQnlDb2RlcyI6WyJKQU5FRE9FIl19fQ.mlBQG0iaZuheMp4W4SmvmIMz7IiGWMpCzBQrABLLJgA'
};
squatch.widgets().upsertUser(initObj).then(function(response) {
  user = response.user;
}).catch(function(error){
  console.log(error);
}); 
Classic only For Classic Referral Platforms
var initObj = {
 user: {       
   id: 'abc_123',
   accountId: 'abc_123',
   email: 'john@example.com',
   firstName: 'John',
   lastName: 'Doe',
   locale: 'en_US',
   imageUrl: 'https://www.example.com/profile/ab5111251125',
   referralCode: 'JOHNDOECODE',
   referredBy: {
     code: 'JANEDOE',          
     isConverted: false
    }
 },
 engagementMedium: 'EMBED',
 widgetType: 'REFERRER_WIDGET',
 jwt: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiYWJjXzEyMyIsImFjY291bnRJZCI6ImFiY18xMjMiLCJlbWFpbCI6ImpvaG5AZXhhbXBsZS5jb20iLCJmaXJzdE5hbWUiOiJKb2huIiwibGFzdE5hbWUiOiJEb2UiLCJsb2NhbGUiOiJlbl9VUyIsInJlZmVycmVkQnkiOnsiY29kZSI6IkpBTkVET0UiLCJpc0NvbnZlcnRlZCI6ZmFsc2V9fX0.yePfMPei_2VvC-W14KGwJ054QB7BBAJcyquKAjijBdw'
};
squatch.widgets().upsertUser(initObj).then(function(response) {
 user = response.user;
}).catch(function(error){
 console.log(error);
}); 
**Returns **
Promise json object if true, with a Widget and user details.
widgetWidget The widget that was created.userUser The user that's in the widget.
🔗 render
This function calls the WidgetApi.render method, and it renders the widget if it is successful. Otherwise it shows the "error" widget.
Classic Only
The render function is a legacy call that is only usable for classic programsParameters
configobject Config detailsconfig.userObject The user detailsconfig.user.idstring The user idconfig.user.accountIdstring The user account idExamples
user: { id: 'abc_125', accountId: 'abc_125' }config.widgetTypeThe type of widget to be displayed.- Classic only For Classic Referral Programs:
REFERRER_WIDGETstring Widget content that lets people make referrals.CONVERSION_WIDGETstring Widget content that shows that someone has been referred.
 
Examples
Growth Automation Programs:
widgetType: "/p/program-name/w/referrerWidget"Classic only Classic Referral Programs:
widgetType: "REFERRER_WIDGET"- Classic only For Classic Referral Programs:
 config.engagementMediumHow the widget is to be displayed.POPUPstring Displays the widget as a modal popup. Popups widgets are rendered on top of other elements in a page.EMBEDstring Displays the widget embedded in the page. An EmbedWidget is displayed inline as part of your page.
Examples
engagementMedium: "POPUP"config.jwtstring the JSON Web Token (JWT) that is used to validate the data (can be disabled)
Example Request
Classic only For Classic Referral Programs:
var initObj = {
  user: {                               
    id: 'abc_123',                      
    accountId: 'abc_123'       
  },
  engagementMedium: 'EMBED',
  widgetType: 'REFERRER_WIDGET',
  jwt: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiYWJjXzEyMyIsImFjY291bnRJZCI6ImFiY18xMjMifX0.Sor56NRtkKqZKLLOy8177bFee5ukiS2-__R1s34KNOE'
};
squatch.widgets().render(initObj).then(function(response) {
  user = response.user;
}).catch(function(error){
  console.log(error);
}); 
**Returns **
Promise json object if true, with a Widget and user details.
widgetWidget The widget that was created.userUser The user that's in the widget.
🔗 WidgetApi
The WidgetApi class is a wrapper around the Widget Endpoints of the SaaSquatch REST API.
🔗 constructor
Initialize a new WidgetApi instance.
Parameters
tenantAliasstring The Tenant that you're using.domainstring The domain for API. Defaults tohttps://app.referralsaasquatch.com
Examples
Browser example
var squatchApi = new squatch.WidgetApi({tenantAlias:'test_12b5bo1b25125'});
Browserify/Webpack example
var WidgetApi = require('squatch-js').WidgetApi;
var squatchApi = new WidgetApi({tenantAlias:'test_12b5bo1b25125'});
Babel+Browserify/Webpack example
import {WidgetApi} from 'squatch-js';
let squatchApi = new WidgetApi({tenantAlias:'test_12b5bo1b25125'});
          🔗 upsertUser
Creates/upserts a user.
Parameters
params.userobject The user details.params.user.idstring The user id.params.user.accountIdstring The user account id.params.user.firstNamestring The user's first name.params.user.lastNamestring The user's last name.params.user.emailstring The user's email.params.user.localestring The user's locale, used for Internationalization. The locale must be of the format 'language_COUNTRY' where the language code must be lowercase and the country code must be uppercase. The separator must be an underscore.params.user.countryCodestring The user's two letter ISO 3166-1 Alpha-2 country code.params.user.referableboolean Indicates if a user is referable or not. Use this in an upsert to indicate a user is no longer eligible to be referred.- Note: This flag shouldn't be used as part of the initial user upsert of a Referred User as it will override the attribution.
 - Spelling Counts: Make sure that when using this flag you spell it correctly, using a single r. It should always be 
referableor the system will not pick up the value. 
params.user.referredByCodesarray This array is used to indicate who referred this user for Growth Automation programs.Classic Only
params.user.referredByobject This object is used to pass in the referral code using the following fields.params.user.referredBy.codestring is the field in which the referrer's code is added.params.user.referredBy.isConvertedboolean tells the system whether or not the referral should be converted or not.
params.user.referralCodesobject This is where you can optionally specify the referral codes for your growth automation programs.Classic only
params.user.referralCodestring This string can be optionally used to specify a referral code in a classic program for the user.params.user.segmentsarray A list of operations for adding and removing the user from segments. Details about the supported operators and operations for adding and removing users from a segment can be found in our User Segmentation article.params.user.shareLinksobject The primary custom shareLinks for different programs. If a given program does not have a referral code, one will be generated.params.user.imageUrlstring The user's image, optionally used in widgets, emails, and themes. If you provide an absolute profile image URL the minimum image size is 80px x 80px.params.user.dateUsTaxFormSubmittedinteger The timestamp of when a user's W-9 tax form was submitted. Used for W-9 Compliance on your tenant, if configured.params.user.customFieldsobject An object containing the custom fields for this user. Learn more about the available custom field functionality in our Custom Fields Developer Guide.Examples
For Growth Automation Programs:
user: { id: 'abc_125', accountId: 'abc_125', email: 'john@example.com', firstName: 'John', lastName: 'Doe', locale: 'en_US', countryCode: 'US', imageUrl: 'https://www.example.com/profile/ab5111251125', referralCodes: { program-id1: 'JOHNDOECODE' }, shareLinks: { program-id1: 'http://example.com/free1' }, referredByCodes: [ "JANEDOE" ], segments: [ 'sampleSegment' ], dateUsTaxFormSubmitted: 1619647338270, customFields: { lastPurchaseDate: 1512152525513, plan: 'Pro+', phone: 19055551234, address: '123 Main st., City, State, Country, H0H0H0', shoeSize: 12.5, currency: 'USD' } }Classic only For Classic Referral Programs:
user: { id: 'abc_125', accountId: 'abc_125', email: 'john@example.com', firstName: 'John', lastName: 'Doe', locale: 'en_US', imageUrl: 'https://www.example.com/profile/ab5111251125', referralCode: 'JOHNDOECODE', referredBy: { code: 'JANEDOE', isConverted: true } }
params.widgetTypeThe type of widget to be displayed.- For Growth Automation Programs:
referrerWidgetstring Widget content that lets people make referrals.conversionWidgetstring Widget content that shows that someone has been referred.partnerWidgetstring Widget content that lets partners refer people into a Partner Program.
 - For Classic Referral Programs:
REFERRER_WIDGETstring Widget content that lets people make referrals.CONVERSION_WIDGETstring Widget content that shows that someone has been referred.
 
Examples
Growth Automation Programs:
javascript widgetType: "p/program-name/w/partnerWidget"Classic only Classic Referral Programs:javascript widgetType: "REFERRER_WIDGET"- For Growth Automation Programs:
 params.engagementMediumHow to display the widget.POPUPstring Displays the widget as a modal popup. Popups widgets are rendered on top of other elements in a page.EMBEDstring Displays the widget embedded in the page. An EmbedWidget is displayed inline as part of your page.
Examples
engagementMedium: "POPUP"params.jwtstring the JSON Web Token (JWT) that is used to validate the data (can be disabled)
Example Request
var initObj = {
  user: {                               
    id: 'abc_123',                      
    accountId: 'abc_123',       
    email: 'john@example.com',                
    firstName: 'John',       
    lastName: 'Doe'  
  },
  jwt: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiYWJjXzEyMyIsImFjY291bnRJZCI6ImFiY18xMjMiLCJlbWFpbCI6ImpvaG5AZXhhbXBsZS5jb20iLCJmaXJzdE5hbWUiOiJKb2huIiwibGFzdE5hbWUiOiJEb2UifX0.EZAUeRp3QHEM7rkDrF-eU_-MHIv1nJlUuNGSD5eWUHM'
};
squatch.api().upsertUser(initObj).then(function(response) {
  user = response.user;
}).catch(function(error){
  console.log(error);
}); 
Returns
Promise string if true, with the widget template, jsOptions and user details.
🔗 render
Render an HTML template of the widget.
Classic Only
The render function is a legacy call that is only usable for classic programsParameters
params.userobject The user details -params.user.idstring The user id -params.user.accountIdstring The user account id Examplesjavascript user: { id: 'abc_125', accountId: 'abc_125' }params.widgetTypeThe type of widget to be displayed.- Classic only For Classic Referral Programs:
REFERRER_WIDGETstring Widget content that lets people make referrals.CONVERSION_WIDGETstring Widget content that shows that someone has been referred.
 
Examples
Growth Automation Programs:
javascript widgetType: "p/program-name/w/referrerWidget"Classic only Classic Referral Programs:javascript widgetType: "REFERRER_WIDGET"- Classic only For Classic Referral Programs:
 params.engagementMediumHow to display the widget.POPUPstring Displays the widget as a modal popup. Popups widgets are rendered on top of other elements in a page.EMBEDstring Displays the widget embedded in the page. An EmbedWidget is displayed inline as part of your page.
Examples
engagementMedium: "POPUP"
-   `params.jwt` **string** the JSON Web Token (JWT) that is used to validate the data (can be disabled)
Classic only For Classic Referral Programs:
var initObj = {
  user: {                               
    id: 'abc_123',                      
    accountId: 'abc_123'       
  },
  engagementMedium: 'EMBED',
  widgetType: 'REFERRER_WIDGET',
  jwt: 'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyIjp7ImlkIjoiYWJjXzEyMyIsImFjY291bnRJZCI6ImFiY18xMjMifX0.Sor56NRtkKqZKLLOy8177bFee5ukiS2-__R1s34KNOE'
};
squatch.widgets().render(initObj).then(function(response) {
  user = response.user;
}).catch(function(error){
  console.log(error);
}); 
Returns
Promise template html if true.
🔗 squatchReferralCookie
Looks up the referral code of the current user, if there is any.
Returns Promise json code referral code if true.
🔗 Static Instance
🔗 init
Initializes the static squatch global. This sets up:
Properties
tenantAliasstring The Tenant that you're using.domainstring The domain for API. Defaults tohttps://app.referralsaasquatch.com
Examples
squatch.init({tenantAlias:'test_basbtabstq51v'});
Returns void 
🔗 api
A static instance of the WidgetApi created when you call init. Read the WidgetApi docs.
Returns WidgetApi static instance
🔗 widgets
A static instance of the Widgets created when you call init. Read the Widgets docs.
Returns Widgets static instance
🔗 Methods for Widgets
The following methods can be used to control when and how your widget works. These methods are available for Pop-Up and Embedded Widgets.
🔗 Widget Open
Pop-Up and Embedded widgets with containers are not displayed automatically. You can open them by using the widget.open() function. This also triggers a silent background refresh and updates the widgets data for our widget mint-components.
The following example opens the widget as soon as it's available.
 
    testTenantWidgets.upsertUser(initObj).then(function(response) {
        response.widget.open();
    });
          🔗 Widget Close
You can close your widget using the widget.close() function. This method is available on both Popup and Embedded widgets.
The following widget example opens the widget and closes it after a 5 second delay.
    testTenantWidgets.upsertUser(initObj).then(function(response) {
    response.widget.open();
    setTimeout(function() {
        response.widget.close()
    }, 5000);
    });