Create a Customer

To start rewarding partners for referral that convert into paying customers your need to call the following method each time a new user signs up on your website: 

kiflo('customer', {
       // customerObject,
   },
   function(response) {
       // handle success
   },
   function(error) {
       // handle error
   }
);

Example:

kiflo('customer', {
   properties: {
       email: 'john.doe@ola.inc',
       ... // your custom customer properties
   }
})

CustomerObject:

Name Type Description
properties (required) object The properties of the customer visible on your Kiflo account. An email is required.

How does Kiflo track my partner referrals?

Kiflo JS reads browser cookies to track new customers brought in by your partners.

Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.