Overview
                                            General
                                            Set Email
                                            Subscribe Email Info
                                            Send Brand
                                            Send Category
                                            Add To Cart
                                            Add To Wishlist
                                            Checkout Ids
                                            Click Image
                                            Comment On Product
                                            Remove From Cart
                                            Save Order
                                            Send Product
                                            Set Cart Url
                                            Visit Help Page
                                    
                CSV Feed
PHP SDK
API Integration
                                            Add Subscriber
                                            Remove subscriber
                                            Subscriber status
                                            Send Email
                                            Feedback
                                            Discounts
                                            Generate Discounts
                                            Unsubscribed Emails
                                    
                API For Partners
sendBrand Function
This function must be called every time a visitor lands on a producer/brand page. In this case, the brand page is the page where the brand details are listed, or the page that lists the products belonging to that particular brand.
sendBrand Function Parameters
| Field | Type | Required | Description | 
|---|---|---|---|
| id | number or text | True | The brand item identifier. | 
| name | text | True | The brand name | 
Examples
function call with all parameters and callback function set
   var _ra = _ra || {};
   _ra.sendBrandInfo = {
       "id": 50,
       "name": "Lee Cooper"
   };
   if (_ra.ready !== undefined) {
       _ra.sendBrand(_ra.sendBrandInfo);
   }