Engagement Attributes Overview Document Version: 1.6 July 2017

Size: px
Start display at page:

Download "Engagement Attributes Overview Document Version: 1.6 July 2017"

Transcription

1 Engagement Attributes Overview Document Version: 1.6 July 2017

2 Contents Introduction... 3 Important notes... 3 Uses of Engagement Attributes in LiveEngage... 3 Types of Engagement Attributes... 4 ecommerce info... 5 Cart update... 5 Transaction... 6 Viewed product... 8 Visitor info... 8 Customer info... 8 Marketing source Personal info Visitor Journey Lead Service activity Visitor error Searched content Section Setting up Engagement Attributes Extracting from the page using LivePerson s scraping tool JavaScript code

3 Introduction LiveEngage provides out-of-the-box basic information about your visitors, for example, the visitor s geolocation, the amount of time they spent on a page, and which pages they viewed. In order to collect more in-depth, specific information such as product viewed, purchase information, errors the visitor encountered, and search results, you can send this information to LiveEngage by using Engagement Attributes. Information collected using Engagement Attributes can be used to achieve the following: Create specific and advanced targeting of visitors. Empower agents with relevant information during conversations with consumers. Receive a comprehensive view of visitor Engagement History. Measure and track campaign goals. Important notes 1. In order for targeting rules (related to target audience or visitor behavior) to be validated, each Engagement Attribute MUST be implemented on the visitor's page. 2. For example, a brand wants to exclude all consumers who have received a specific error code on their site from receiving an engagement. In order for the targeting rule to be checked by LiveEngage, an engagement attribute must be sent both if the error code was received and also if it was not received, so that LiveEngage can determine which consumers to display the engagement to. Uses of Engagement Attributes in LiveEngage Described below are some of the uses of Engagement Attributes in LiveEngage. Create more specific visitor targeting: Segment your visitors according to their properties, behavior, and journey on your website, and provide a tailored experience for each segment. For example, provide assistance to visitors who struggle to log in, or offer insurance to a client that is renting a car. 3

4 Conversion / Goal tracking: Measure your campaign performance against your business objectives, whether it s ROI or service quality. For example, use hotel booking value to track your promotional campaign conversions, or use loan application completion as a goal reached indication. Tools for agents: Provide agents with real-time information about the visitor in order to improve their efficiency and service quality. For example, provide agents with an order ID for when visitors inquire about the terms and conditions of their order, or provide agents with customer information during a conversation with a registered visitor. Engagement History: Receive a comprehensive view of the visitor journey, behavior and attributes, as part of the Engagement History in order to better track agent performance and take corrective action should the need arise. Authentication Service (OAuth 2.0): Authenticated Customer Information enables visitors that have logged into a brand s website and initiated a chat to show up as being authenticated. The Agent Workspace then displays, in real-time, the correct and verified PII (Personally Identifiable Information) of the authenticated visitor. Types of Engagement Attributes There are 10 supported Engagement Attributes, organized into 3 categories: ecommerce info Visitor info Visitor Journey 4

5 Each Engagement Attribute has its own data structure and can be sent to LivePerson using JavaScript code, or extracted from your page using LivePerson s scraping tool. Code example: lptag.sdes = lptag.sdes []; lptag.sdes.push( // SDEs located here ); ecommerce info ecommerce info Engagement Attributes allow you to track ecommerce-related activities on your website. Cart update This Engagement Attribute is used to get the status of the visitor s shopping cart. The cart status includes the product items within the cart and its total monetary value. The cart value and/or the products in the cart can be used to target visitors. For example, you can target low value shoppers and encourage them to buy more in order to get your free shipping coupon. You can also offer complementary products in addition to products in the cart. type The event name ("cart") string "cart" true total Total cart value double 11.7 true currency Currency of the total cart value string USD 5

6 numitems Number of items in cart integer 6 true products Array of items in cart array of Products objects [, ] "product":..., "quantity": 2 "product":..., "quantity": 1 Products Object: product Product details Product object quantity Product Object: Number of items of this product in cart "name": "prod1", "category": "cat_1", "sku": "sku", "price": 7.8 integer 1 name Product name string "prod1" category Product category name string "category1" sku Product SKU or unique identifier string "dep1" price Product price double 7.8 Cart update SDE JSON example: "type": "cart", //MANDATORY "total": 11.7, //TOTAL CART VALUE "currency": "USD", //CURRENCY CODE "numitems": 6, //NUMBER OF ITEMS IN CART "products": [ //ARRAY OF PRODUCTS "product": "name": "prod1", //PRODUCT NAME "category": "category", //PRODUCT CATEGORY NAME "sku": "sku", //PRODUCT SKU OR UNIQUE IDENTIFIER "price": 7.8 //PRODUCT PRICE, "quantity": 1 //NUMBER OF PRODUCTS ] Transaction This Engagement Attribute is used to track any money transaction, purchase of items, or deposit, including the items themselves and their details. 6

7 The total transaction value can be used to track conversions. It is also displayed in your revenue reports as a means of measuring the monetary value of your campaigns. type The event name ("purchase") string "purchase" true total Total transaction value double 11.7 currency Currency of the total transaction string USD value orderid Unique order or receipt ID string "orderid123" cart Cart details Cart object "numitems": 6, "products": [...,...] Cart object: Products Array of Items in cart array of Products objects [, "product":..., "quantity": 2 "product":..., "quantity": 1 ] numitems Number of items in cart integer 6 Transaction SDE JSON example: "type": "purchase", //MANDATORY "total": 11.7, //TOTAL VALUE OF THE TRANSACTION AFTER DISCOUNT "currency": "USD", //CURRENCY CODE "orderid": "DRV1534XC", //UNIQUE ORDER ID OR RECEIPT ID "cart": "products": [ "product": "name": "antivirus pro plan", //PRODUCT NAME "category": "software", //PRODUCT CATEGORY NAME "sku": "xyz001", //PRODUCT SKU OR UNIQUE IDENTIFIER "price": 7.8 //SINGLE PRODUCT PRICE, "quantity": 3 //QUANTITY OF THIS PRODUCT ] 7

8 Viewed product This Engagement Attribute is used to track a product or service that interests visitors. Each product is described by Name, Category, and SKU. This information can be used to target visitors. For example, you can offer products to visitors which are in the same category or price range as the products they previously viewed. type The event name ("prodview") string "prodview" true currency Currency of the viewed products string USD products Array of Items in cart array of Products objects Viewed Product SDE JSON example: [, ] "product":..., "quantity": 2 "product":..., "quantity": 1 "type": "prodview", //MANDATORY "currency": "USD", //CURRENCY CODE "products": [ //ARRAY OF PRODUCTS "product": "name": "red high heel shoe", //PRODUCT NAME "category": "women shoes", //PRODUCT CATEGORY NAME "sku": "xyz567", //PRODUCT SKU OR UNIQUE IDENTIFIER "price": 77.8 //SINGLE PRODUCT PRICE ] Visitor info Visitor Info Engagement Attributes allow you to collect more information about your visitors, including where they came from, and the affiliates they are associated with. Customer info This Engagement Attribute is used to collect information about a registered visitor such as the customer type (for example, VIP or Platinum), and their unique identifier. This information can be used to segment visitors and tailor an experience based on their attributes (customer type, status, and balance). For example, you can invite your most valuable customers to chat with your relevant agents, while offering self-service content to lowtier customers. type The event name ("ctmrinfo") string "ctmrinfo" true 8

9 ctype Customer type/tier (case string "Gold" insensitive) cstatus Customer status (case string "migrated" insensitive) balance Customer s financial double 2.6 balance currency Currency of the customer's string USD financial balance customerid Customer s unique string "1234abc" identifier socialid Social Media identifier string " " (e.g., Facebook, Twitter). This parameter represents your internal identifier. imei Unique device/phone string " " identifier username Customer s user name string "user000" companysize Number of company int 500 employees companybranch Company branch string "East village" accountname Customer s company name string "oxford insurance company" role Customer's title string "marketing manager" lastpaymentdate Last payment date. This date object parameter consists of 3 integer fields: year, month, day. "day": 15, "month": 10, "year": 2014 registrationdate Registration date. This parameter consists of 3 integer fields: year, month, day. date object "day": 23, "month": 5, "year": 2013 loginstatus Login status integer storezipcode storenumber A store ZIP code the customer is associated with. The ZIP code is mapped to multiple stores in the same geographic area. A specific store number the customer is associated with. Customer Info SDE JSON example: string "12205" string "1241" "type": "ctmrinfo", //MANDATORY "info": 9

10 ETC... "cstatus": "cancelled", //CUSTOMER LIFECYCLE STATUS. FROM PRE-DEFINED LIST "ctype": "vip", //CUSTOMER TYPE OR TIER. FROM PRE-DEFINED LIST "customerid": "138766AC", //UNIQUE CUSTOMER IDENTIFIER "balance": , //THE CUSTOMER FINANCIAL BALANCE IN DECIMAL VALUE "currency": "USD", //CURRENCY CODE "socialid": " ", //SOCIAL ID OF YOUR CHOICE: FACEBOOK, TWITTER "imei": " ", //UNIQUE DEVICE OR PHONE IDENTIFIER "username": "user000", //CONSUMER NICKNAME OR USERNAME "companysize": 500, //COMPANY SIZE MEASURED BY NUMBER OF EMPLOYEES "accountname": "bank corp", //THE CUSTOMER'S COMPANY NAME "role": "broker", //CONSUMER ROLE TITLE "lastpaymentdate": "day": 15, //THE DAY OF THE LAST PAYMENT NUMERIC VALUE "month": 10, //THE MONTH OF THE LAST PAYMENT NUMERIC VALUE "year": 2014 //THE YEAR OF THE LAST PAYMENT NUMERIC VALUE, "registrationdate": "day": 23, //THE DAY OF THE REGISTRATION NUMERIC VALUE "month": 5, //THE MONTH OF THE REGISTRATION NUMERIC VALUE "year": 2013 //THE YEAR OF THE REGISTRATION NUMERIC VALUE, "storenumber": "123865", //STORE NUMBER "storezipcode": "20505" //STORE ZIP CODE Marketing source This Engagement Attribute is used to obtain more information about the marketing source of your visitors, which channel or campaign drove visitors to your website, and with which affiliates they are associated. This information can be used to segment visitors and tailor an experience based on the traffic source (originating channel, campaign or affiliate). For example, you can display a specific offer to visitors that arrived to the website through a specific affiliate, or route a visitor to a relevant agent based on the originating channel. type info Info object: The event name ("mrktinfo") Marketing source information string "mrktinfo" true Info object "channel": "1", "Affiliate": "Yahoo", "campaignid": "US coupon campaign" channel Originating marketing channel integer 0-Direct, 1-Search, 2-Social, 3- , 4-Referral, 10

11 5-Paid Search, 6- Display affiliate Affiliate name string "Yahoo" campaignid Campaign ID string "camp12" Marketing Source SDE JSON example: "type": "mrktinfo", //MANDATORY "info": "channel": "1", //ORIGINATING CHANNEL ENUM: "affiliate": "Yahoo", //AFFILIATE NAME "campaignid": "US coupon campaign" //EXTERNAL ORIGINATING CAMPAIGN Personal info This Engagement Attribute is used to collect personal information about your visitors. You can pass login information from cookies, or from questions you ask them in your forms. This information can be used to segment visitors and tailor an experience based on their attributes (age and gender). For example, you can exclude visitors that are too young for your service/product, or display different wording or offers based on the visitor s gender. type The event name string "personal" true ("personal") firstname Visitor s first name string "John" lastname Visitor s surname string "Doe" age Visitor s age Age object contacts Visitor s contact info array of Contact object "age": 34, "year": 1980, "month": 4, "day": 15 [ " ":"m@m.com", "phone": " " ] gender Visitor s gender integer 0-MALE, 1- FEMALE, 2-OTHER company Visitor's company string "Microsoft Ltd." language Visitor's language. The value is an ISO Alpha-2 [ISO639 1] language code in lowercase and an ISO string en-us 11

12 Age object: Alpha-2 [ISO3166 1] country code in uppercase, separated by a dash or underscore (for compatibility). For example, en-us or fr-ca. age year Visitor s age Note: If this parameter is not provided, the age is calculated using year, month, day. Visitor s year of birth Note: This parameter is mandatory if the visitor s age needs to be calculated. integer 47 integer 1969 month Visitor s month of birth integer 2 day Visitor s day of birth integer 12 Contact object: Visitor s address string "john@doe.com" phone Visitor s phone number string " " phonetype Phone type integer HOME, MOBILE, WORK, FAX, MAIN, HOME_FAX, WORK_FAX, PAGER, OTHER address Visitor s personal addresses Address object "country": STRING (, "region": STRING ] Address object: 12

13 county Visitor s county string "US" The value is 2 letter code in uppercase ISO Alpha-2 region Visitor s region string "North America" Personal Info SDE JSON example: "type": "personal", //MANDATORY "personal": "firstname": "John", // FIRST NAME "lastname": "Doe", // SURNAME "age": "age": 34, // AGE AS INTEGER "year": 1980, // BIRTH YEAR "month": 4, // BIRTH MONTH "day": 15 // BIRTH DAY, "contacts": [ " ": "myname@example.com", // "phone": " " // PHONE NUMBER ], "gender": "MALE", // MALE, FEMALE, OTHER "language": "en-us", // LANGUAGE "company": "company" // VISITOR COMPANY NAME Visitor Journey Visitor Journey Engagement Attributes allow you to collect information about key actions that visitors take along their journey, and customize their experience accordingly. This includes the leads they generated, errors they experienced, and more. Lead This Engagement Attribute is used to track lead information that can help you identify what your visitors are interested in, and where they are in your funnel. This information can be used to track conversions. The lead value will also appear in your revenue reports as a means to measure the monetary value of your campaigns. A session can have more than a single lead in it, and can be connected to a single ticket ID or multiple tickets. type The event name ("lead") string "lead" true lead Lead details Lead object "topic": "luxury car", "value": 22.22, 13

14 "leadid": "xyz123" Lead object: topic Lead s name/topic string "topic1" value Lead s value double currency Currency of the lead value string USD leadid Lead s identifier / ticket id string "Id12" Lead SDE JSON example: "type": "lead", //MANDATORY "lead": "topic": "luxury car test drive 2015", //TOPIC OR NAME OF A SUBMITTED LEAD "value": 22.22, //EVALUATED VALUE OF THE LEAD "currency": "USD", //CURRENCY CODE "leadid": "xyz123" //LEAD IDENTIFIER OR TICKET ID Service activity This Engagement Attribute is used to measure service activities, for example, ordering a checkbook, submitting an application, or requesting a mortgage. This information can be used to track conversions, for example, a visitor that completed a loan application. It can additionally be used to follow up with visitors, for example, engaging with a visitor whose application has been cancelled. A session can have more than one service activity in it. type The event name ("service") string "service" true service Service details Service object "topic": "order", "status": 0, "category": "finance", "serviceid": "service12" Service object: topic Service topic or name string "order checkbook" 14

15 status Status integer 0-Complete, 1-In Progress, 2- Approved, 3- cancelled, 4-Not Approved, 5-Reviewed, 6- Missing Details, 7- Closed, 8-Removed, 9-Assigned, 10-Waiting category Category name string "Finance" serviceid Service unique identifier or ticket id Service Activity SDE JSON example: string "service17" "type": "service", //MANDATORY "service": "topic": "order checkbook", // SERVICE ACTIVITY TOPIC OR NAME "status": 0, // STATUS ENUM "category": "finance", // SERVICE CATEGORY NAME "serviceid": "service12" // SERVICE UNIQUE IDENTIFIER OR TICKET ID Visitor error This Engagement Attribute is used to collect information about errors that visitors experience when they browse the website and fill out forms. All errors are aggregated in a list during the session until resolved. This information can be used to offer help to visitors who are struggling to complete a specific action. type The event name ("error") string "error" true error Error details Error object Error object: "contextid": " application", "message": "Missing data", "code": "er100004" "level": 10, "resolved": 15

16 contextid Error context string "Credit card application" message Error message string "Expiration date missing" code Error code string "XV45EZT" level Error level long 10 resolved Resolution status Boolean Visitor Error SDE JSON example: "type": "error", //MANDATORY "error": "contextid": "Credit card application", "message": "Expiration date missing", // ERROR MESSAGE "code": "er100004" // ERROR CODE "level": 10, "resolved": Searched content This Engagement Attribute is used to to report on content that was searched by consumers on the brand s website such as FAQ and different articles or products. This information can be used to offer help to visitors based on their searches. type keywords The event name ("searchinfo") Array of the search keywords string "searchinfo" true array ["Reset password"] Searched content SDE JSON example: "type": "searchinfo", //MANDATORY "keywords": ["Reset password"], //TERMS SEARCHED BY A VISITOR. FOR EXAMPLE: FAQ ABOUT RESET PASSWORD Section This Engagement Attribute is used to determine the appropriate Location for engaging with visitors, or to display where the visitors are browsing. Code example: 16

17 lptag.section = [ //SET A LIST OF YOUR SITE SECTIONS "electronics", //CAN BE A SECTION OR A SUB-SECTION "user agreement faqs" ]; Setting up Engagement Attributes Engagement Attributes configuration is located in the Data Sources page, accessed from the Campaigns footnote. The data can be sent to LivePerson using one of the following methods: Extracting from the page using LivePerson s scraping tool JavaScript code Extracting from the page using LivePerson s scraping tool This option requires no code, and assumes the information exists on your webpage. To track Engagement Attributes, follow the steps described below. 1. Log into LiveEngage. At the top of the page, click Campaigns, and then, in the footnote, click Data Sources. The Data Sources page is displayed. 17

18 2. Click Configuration next to the relevant Engagement Attributes category. The Configuration page is displayed for the relevant category. 3. For each property, select how to extract the information. The following options are available: o o o 4. Click Save. Notes: HTML element by class name HTML element by ID JavaScript global variable i. LiveEngage will trim any non-numeric characters such as dollar signs for properties that represent numbers, for example, total. ii. Make sure that the identifier class name or ID is unique. LiveEngage will look for your identifier on all of your pages. JavaScript code This option requires the use of JavaScript code. This method is required if the data you want to collect does not exist on the page. To track Engagement Attributes, follow the steps described below. 1. Insert the Engagement Attribute declaration in a script tag, either at the end of the LiveEngage tag script, or in a separate script tag just after. 2. Insert the push function below the declaration and add the type of Engagement Attribute, for example, prodview. Notes: i. The push method expects a JSON format. ii. The JSON structure is unique to each Engagement Attribute. The appropriate format for each Engagement Attribute can be found in Types of Engagement Attributes section below. 3. Validate the code by going to the visitor page and simulating the visitor actions that trigger an event. Example for data that is sent when a visitor views Asics Women's GT : lptag.sdes = lptag.sdes []; lptag.sdes.push( "type": "prodview", //MANDATORY "products": [ //ARRAY OF PRODUCTS "product": "name": "Asics Women's GT ", //PRODUCT NAME "category": "Women running shoes", //PRODUCT CATEGORY NAME "sku": " ", //PRODUCT SKU OR UNIQUE IDENTIFIER "price": //PRODUCT PRICE ] ); Note: When LiveEngage gets a list, the system never calculates totals nor numbers of items. LiveEngage relies on the event to send that information. 18

19 This document, materials or presentation, whether offered online or presented in hard copy ("LivePerson Informational Tools") is for informational purposes only. LIVEPERSON, INC. PROVIDES THESE LIVEPERSON INFORMATIONAL TOOLS "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO THE IMPLIED WARRANTIES OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE. The LivePerson Informational Tools contain LivePerson proprietary and confidential materials. No part of the LivePerson Informational Tools may be modified, altered, reproduced, stored in or introduced into a retrieval system, or transmitted in any form or by any means (electronic, mechanical, photocopying, recording, or otherwise), without the prior written permission of LivePerson, Inc., except as otherwise permitted by law. Prior to publication, reasonable effort was made to validate this information. The LivePerson Information Tools may include technical inaccuracies or typographical errors. Actual savings or results achieved may be different from those outlined in the LivePerson Informational Tools. The recipient shall not alter or remove any part of this statement. Trademarks or service marks of LivePerson may not be used in any manner without LivePerson's express written consent. All other company and product names mentioned are used only for identification purposes and may be trademarks or registered trademarks of their respective companies. LivePerson shall not be liable for any direct, indirect, incidental, special, consequential or exemplary damages, including but not limited to, damages for loss of profits, goodwill, use, data or other intangible losses resulting from the use or the inability to use the LivePerson Information Tools, including any information contained herein LivePerson, Inc. All rights reserved. 19

Profiles (permissions) Document Version: V1.6 March 2018

Profiles (permissions) Document Version: V1.6 March 2018 Profiles (permissions) Document Version: V1.6 March 2018 Profiles (permissions) Create profiles with different permission sets for greater role flexibility At LiveEngage we recognize that every brand is

More information

LiveEngage Secure Form. Document Version: 1.2 June 2018

LiveEngage Secure Form. Document Version: 1.2 June 2018 Document Version: 1.2 June 2018 Contents Introduction... 3 Secure Form Benefits... 3 European Security Standards... 3 When to Use the LiveEngage Secure Form...4 PCI-DSS Compliance... 4 How it Works...

More information

LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017

LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017 LiveEngage Messaging Platform: Security Overview Document Version: 2.0 July 2017 Contents Introduction... 3 Supported Platforms... 3 Protecting Data in Transit... 3 Protecting Data at Rest... 3 Encryption...

More information

Enhancing the LiveEngage SMS Experience with Twilio Functions Document Version: 3.0 October 2017

Enhancing the LiveEngage SMS Experience with Twilio Functions Document Version: 3.0 October 2017 Enhancing the LiveEngage SMS Experience with Twilio Functions Document Version: 3.0 October 2017 Contents Introduction... 3 Gateway level enhancements... 3 Off-hours messages... 3 TCPA or SLA message on

More information

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.0 February Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.0 February 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.0 Introduction The LiveEngage platform aims to provide

More information

General Settings General Settings Settings

General Settings General Settings Settings Contents General Settings... 3 Payment Methods... 31 Currency Management... 35 Sales Tax... 37 Commission Settings... 40 Affiliate Commission Settings... 43 Email Templates Management... 46 Subscription

More information

Web Messaging Configuration Guide Document Version: 1.3 May 2018

Web Messaging Configuration Guide Document Version: 1.3 May 2018 Web Messaging Configuration Guide Document Version: 1.3 May 2018 Contents Introduction... 4 Web Messaging Benefits... 4 Deployment Steps... 5 1. Tag your brand site... 5 2. Request feature enablement...

More information

QNB Bank-ONLINE AGREEMENT

QNB Bank-ONLINE AGREEMENT This is an Agreement between you and QNB Bank ("QNB"). It explains the rules of your electronic access to your accounts through QNB Online. By using QNB-Online, you accept all the terms and conditions

More information

18B. Integrating Oracle Commerce Cloud and Oracle Responsys

18B. Integrating Oracle Commerce Cloud and Oracle Responsys 18B Integrating Oracle Commerce Cloud and Oracle Responsys Integrating Oracle Commerce Cloud and Oracle Responsys Product version: 18B Release date: 4-26-18 Document identifier: CCMarketingInteg1804261435

More information

Website Privacy Policy

Website Privacy Policy Website Privacy Policy Last updated: May 12, 2016 This privacy policy (the Privacy Policy ) applies to this website and all services provided through this website, including any games or sweepstakes (collectively,

More information

Basware Portal for Receiving Basware Commerce Network

Basware Portal for Receiving Basware Commerce Network Basware Portal for Receiving Basware Commerce Network Copyright 1999-2016 Basware Corporation. All rights reserved. Disclaimer This product or document is copyrighted according to the applicable copyright

More information

NESTLÉ Consumer Privacy Notice Template PRIVACY NOTICE

NESTLÉ Consumer Privacy Notice Template PRIVACY NOTICE PRIVACY NOTICE Nestlé Purina Petcare Limited (hereinafter referred to as Nestlé ) is committed to safeguarding your privacy and ensuring that you continue to trust Nestlé with your personal data. When

More information

Copyright 2015 YEALINK NETWORK TECHNOLOGY CO., LTD.

Copyright 2015 YEALINK NETWORK TECHNOLOGY CO., LTD. Copyright Copyright 2015 YEALINK NETWORK TECHNOLOGY CO., LTD. Copyright 2015 Yealink Network Technology CO., LTD. All rights reserved. No parts of this publication may be reproduced or transmitted in any

More information

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties.

TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. TERMS OF USE Effective Date: January 1, 2015 To review material modifications and their effective dates scroll to the bottom of the page. 1.Parties. The parties to these Terms of Use are you, and the owner

More information

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2.

LiveEngage System Requirements and Language Support Document Version: 5.6 May Relevant for LiveEngage Enterprise In-App Messenger SDK v2. LiveEngage System Requirements and Language Support Document Version: 5.6 May 2017 Relevant for LiveEngage Enterprise In-App Messenger SDK v2.3 Introduction The LiveEngage platform aims to provide the

More information

Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS

Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS Agreements & Contracts: Electronic Documents User Agreement CUSTOMER SERVICE SKOWHEGAN SAVINGS 800.303.9511 CUSTSERV@SKOWSAVINGS.COM TABLE OF CONTENTS ELECTRONIC DELIVERY OF DOCUMENTS...3 SYSTEM REQUIREMENTS...3

More information

Beam Technologies Inc. Privacy Policy

Beam Technologies Inc. Privacy Policy Beam Technologies Inc. Privacy Policy Introduction Beam Technologies Inc., Beam Dental Insurance Services LLC, Beam Insurance Administrators LLC, Beam Perks LLC, and Beam Insurance Services LLC, (collectively,

More information

esss Release Notes Version 4.0 Service Pack 1

esss Release Notes Version 4.0 Service Pack 1 esss Release Notes Version 4.0 Service Pack 1 May, 2012 Copyright Information Copyright 2012 Nodus Technologies, Inc. All rights reserved. - Copyright 2004, 2005, 2006, 2007, 2008 BV Software. All rights

More information

Privacy Notice Froneri South Africa (Pty) Ltd t\a Dairymaid ( Froneri ) ( Privacy Notice ) Froneri Froneri Froneri

Privacy Notice Froneri South Africa (Pty) Ltd t\a Dairymaid ( Froneri ) ( Privacy Notice ) Froneri Froneri Froneri Privacy Notice Effective on 10/05/2013; last updated on 08/09/2015 Froneri South Africa (Pty) Ltd t\a Dairymaid ( Froneri ) is committed to safeguarding your privacy and ensuring that you continue to trust

More information

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT

TERMS & CONDITIONS. Complied with GDPR rules and regulation CONDITIONS OF USE PROPRIETARY RIGHTS AND ACCEPTABLE USE OF CONTENT TERMS & CONDITIONS www.karnevalkings.com (the "Site") is a website and online service owned and operated by the ViisTek Media group of companies (collectively known as "Karnevalkings.com", "we," "group",

More information

Document Cloud (including Adobe Sign) Additional Terms of Use. Last updated June 5, Replaces all prior versions.

Document Cloud (including Adobe Sign) Additional Terms of Use. Last updated June 5, Replaces all prior versions. Document Cloud (including Adobe Sign) Additional Terms of Use Last updated June 5, 2018. Replaces all prior versions. These Additional Terms govern your use of Document Cloud (including Adobe Sign) and

More information

Cisco WebEx Best Practices for Secure Meetings for Site Administrators and Hosts

Cisco WebEx Best Practices for Secure Meetings for Site Administrators and Hosts Cisco WebEx Best Practices for Secure Meetings for Site Administrators and Hosts First Published: 2016-04-04 Americas Headquarters Cisco Systems, Inc. 170 West Tasman Drive San Jose, CA 95134-1706 USA

More information

LiveEngage User Guide for Campaign Managers Document Version: 1.1 January 2017

LiveEngage User Guide for Campaign Managers Document Version: 1.1 January 2017 LiveEngage User Guide for Campaign Managers Document Version: 1.1 January 2017 Contents 1 Introduction... 5 Move from Voice to Messaging... 5 Shift Agents to Customer Care Professionals... 6 Connection

More information

Copyrights and Privacy Statement

Copyrights and Privacy Statement Copyrights and Privacy Statement Jesse James Hardscaping Authorization of Use Jesse James Hardscaping hereby authorizes any person to access this Website for informational purposes only. Jesse James Hardscaping

More information

Using Google Analytics within Cvent

Using Google Analytics within Cvent Using Google Analytics within Cvent MARCH 2017 Cvent, Inc 1765 Greensboro Station Place McLean, VA 22102 www.cvent.com Access Resources Submit Your Questions Sign Up for Training Contents Using Google

More information

Eagles Charitable Foundation Privacy Policy

Eagles Charitable Foundation Privacy Policy Eagles Charitable Foundation Privacy Policy Effective Date: 1/18/2018 The Eagles Charitable Foundation, Inc. ( Eagles Charitable Foundation, we, our, us ) respects your privacy and values your trust and

More information

PLR-MRR-Products.com 1

PLR-MRR-Products.com 1 PLR-MRR-Products.com 1 You may give away this ebook. It may not be modified in any manner. Brought to You by PLR-MRR-Products.com Disclaimer Reasonable care has been taken to ensure that the information

More information

Solv3D Privacy Policy

Solv3D Privacy Policy Solv3D Inc. ( Solv3D, We, Us, or Our ) is committed to transparency in the collection and use of your personal information. The Privacy Policy below describes how we collect and use personal information,

More information

RDS Employee Access Module User Guide

RDS Employee Access Module User Guide RDS Employee Access Module User Guide This manual is designed to help you set up your Employee Access account. Create New Account - As Employee Disclaimer of Warranties and Limitation of Liabilities Regional

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience FCUBS Originations Auto Loan User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 FCUBS Originations Auto Loan User Manual January 2018 Oracle Financial Services

More information

Best Practices Guide for Payments. Android August 2018

Best Practices Guide for Payments. Android August 2018 Best Practices Guide for Payments Android August 2018 Contents 3 Overview 4-5 Google Pay Payment Button: Do s & Don ts 5 Examples 6-7 Google Pay Logo & Mark: Do s & Don ts 7 Examples 8-9 Using Google Pay

More information

EAM Portal User's Guide

EAM Portal User's Guide EAM Portal 9.0.2 User's Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide is furnished

More information

X-Affiliate add-on module for X-Cart 4.2.0

X-Affiliate add-on module for X-Cart 4.2.0 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual Company website: www.x-cart.com Revision date: Dec/10/2008 X-Affiliate add-on module for X-Cart 4.2.0 Partner area User Manual This manual

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Retail Customer Services User Manual Release 18.2.0.0.0 Part No. E97823-01 June 2018 Retail Customer Services User Manual June 2018 Oracle Financial Services Software

More information

Do-It-Yourself Forms Guide

Do-It-Yourself Forms Guide Do-It-Yourself Forms Guide 06/26/2017 etapestry 7.22.0 Do-It-Yourself Forms US 2016 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means,

More information

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE

PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PROFESSIONAL DEVELOPMENT ADVISOR (PDA) USER GUIDE PDA Account Registration On the America s Health Insurance Plans website (www.ahip.org/courses ), Click Register and submit your information. Please note

More information

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement

CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement CERTIFIED MAIL LABELS TERMS OF USE and PRIVACY POLICY Agreement Welcome to Certified Mail Envelopes and Certified Mail Labels web sites (the Site ) a website, trademark and business name owned and operated

More information

1.2 Participant means a third party who interacts with the Services as a result of that party s relationship with or connection to you.

1.2 Participant means a third party who interacts with the Services as a result of that party s relationship with or connection to you. Document Cloud (including Adobe Sign) Additional Terms of Use Last updated June 16, 2016. Replaces the prior version in its entirety. Capitalized terms used in these Document Cloud Additional Terms ( Additional

More information

AT&T Cloud Solutions Portal. Account and User Management Guide

AT&T Cloud Solutions Portal. Account and User Management Guide AT&T Cloud Solutions Portal Account and User Management Guide October 2017 1 Legal Disclaimer The information contained in this document should not be duplicated, transmitted, or disclosed, in whole or

More information

JUNE 2018 Version 1.0. CU*ANSWERS Risk Assessment for It s Me 247. Online Banking

JUNE 2018 Version 1.0. CU*ANSWERS Risk Assessment for It s Me 247. Online Banking JUNE 2018 Version 1.0 CU*ANSWERS Risk Assessment for It s Me 247 Online Banking CONTENTS INTRODUCTION... 3 FEATURES... 3 QUICK REFERENCE... 4 RISK ASSESSMENT TOOLS... 5 PIB TOOLS... 8 ABNORMAL ACTIVITY...

More information

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding)

BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) BCDC 2E, 2012 (On-line Bidding Document for Stipulated Price Bidding) CLAUSE 13 ON-LINE BIDDING 13.1 ON-LINE BIDDING.1 Definitions: Owner means the party and/or their agent designated to receive on-line

More information

ETSY.COM - PRIVACY POLICY

ETSY.COM - PRIVACY POLICY At Etsy, we value our community. You trust us with your information, and we re serious about that responsibility. We believe in transparency, and we re committed to being upfront about our privacy practices,

More information

3. How is technology used to serve our advertisements on other Sites that you visit and what choices do you have?

3. How is technology used to serve our advertisements on other Sites that you visit and what choices do you have? Privacy Policy for U.S. Websites Scope. This Privacy Policy applies to personal information collected online, used and disclosed by Stanley Black & Decker, Inc. s affiliates including but not limited to

More information

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters

Microsoft Dynamics GP Release Integration Guide For Microsoft Retail Management System Headquarters Microsoft Dynamics GP Release 10.0 Integration Guide For Microsoft Retail Management System Headquarters Copyright Copyright 2007 Microsoft Corporation. All rights reserved. Complying with all applicable

More information

EnviroIssues Privacy Policy Effective Date:

EnviroIssues Privacy Policy Effective Date: EnviroIssues Privacy Policy Effective Date: 9-28-18 EnviroIssues, Inc. ( we, us, our ) is committed to protecting the privacy of visitors to its website and users of its services (each a Service and collectively

More information

Priv ac y Policy. Last upda ted:

Priv ac y Policy. Last upda ted: Priv ac y Policy Last upda ted: 05.2014 This Privacy Policy describes the policies and procedures of ZET / Adrian Zingg / ZetApps and any subsidiaries and affiliated entities (together, Company, we or

More information

Personal Information You Provide When Visiting Danaher Sites

Personal Information You Provide When Visiting Danaher Sites Danaher Online Privacy Policy Effective March 2017 This Online Privacy Notice ( Privacy Policy ) explains how we handle the personal information provided to us on websites, mobile sites, mobile applications,

More information

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018

LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 LiveEngage System Requirements and Language Support Document Version: 6.4 March 2018 Introduction The LiveEngage platform aims to provide the best engagement experiences for consumers and brands. To do

More information

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide

One Identity Active Roles 7.2. Replication: Best Practices and Troubleshooting Guide One Identity Active Roles 7.2 Replication: Best Practices and Troubleshooting Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The

More information

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist

Affiliate Program. Powered by. What you will find in this Advertiser Checklist: The Advertiser Checklist Affiliate Program Powered by What you will find in this Advertiser Checklist: Action plan for getting started Details outlining the 5 steps necessary for setting up your account Help Center information

More information

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences.

Table of Contents. Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Table of Contents Buyer Functions Buyer Responsibilities: Create and submit orders for approval and manage personal profile and preferences. Web site Login Page # Login Process 3 Reset Password 4 Authorize

More information

We collect information from you when You register for an Traders account to use the Services or Exchange and when You use such Services. V.

We collect information from you when You register for an Traders account to use the Services or Exchange and when You use such Services. V. Privacy Policy General A. The parties involved in reference to this policy are Company and You, the User of these sites: www.bittrademarket.com A.1 Bittrade Market decentralize system is the publisher

More information

TREND MICRO PRIVACY POLICY (Updated May 2012)

TREND MICRO PRIVACY POLICY (Updated May 2012) TREND MICRO PRIVACY POLICY (Updated May 2012) Trend Micro Incorporated and its subsidiaries and affiliates (collectively, "Trend Micro") are committed to protecting your privacy and ensuring you have a

More information

One Identity Starling Two-Factor Authentication. Administration Guide

One Identity Starling Two-Factor Authentication. Administration Guide One Identity Starling Two-Factor Authentication Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Technician Web Portal User Guide

Technician Web Portal User Guide Technician Web Portal User Guide Miracle Service Technician Web Portal User Guide 1 Miracle Service Technician Web Portal User Guide Last revised: February 27, 2011 2007 Nexent Innovations Inc. All rights

More information

SeelogicMail Terms and Conditions

SeelogicMail Terms and Conditions SeelogicMail Terms and Conditions Seelogic Mail (the "Services"), is a web based software application that offers businesses and web site operators a software application for HTML design, email list management

More information

SIAM R3.0 USER GUIDE

SIAM R3.0 USER GUIDE SIAM R3.0 USER GUIDE Document Reference: 8295 September 2016 Revision: 3 Version Date Author Changes Number 1 Mar 2015 John Lindsay 2 Jun Sam Unsuspending a SIM card description updated. 2016 Smith 3 Sep

More information

The following Terms and Conditions apply to the use of this Website, as well as all transactions conducted through the site.

The following Terms and Conditions apply to the use of this Website, as well as all transactions conducted through the site. The following Terms and Conditions apply to the use of this Website, as well as all transactions conducted through the site. Copyright All content appearing on this Web site is the property of: Osprey

More information

The University of Central Florida Alumni Privacy Policy and Terms and Conditions

The University of Central Florida Alumni Privacy Policy and Terms and Conditions The University of Central Florida Alumni Privacy Policy and Terms and Conditions POLICY OVERVIEW UCF Alumni works with the university to maintain a comprehensive database of information on alumni in accordance

More information

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING

FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING FUNCTIONAL SIZE MEASUREMENT USING THE COSMIC METHOD EXAMPLE: ONLINE SHOPPING Copyright 2014. All Rights Reserved. Mónica Villavicencio and Alain Abran Permission to copy all or part of this material is

More information

One Identity Password Manager User Guide

One Identity Password Manager User Guide One Identity Password Manager 5.8.2 User Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Google Analytics. Gain insight into your users. How To Digital Guide 1

Google Analytics. Gain insight into your users. How To Digital Guide 1 Google Analytics Gain insight into your users How To Digital Guide 1 Table of Content What is Google Analytics... 3 Before you get started.. 4 The ABC of Analytics... 5 Audience... 6 Behaviour... 7 Acquisition...

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Wallets User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 Wallets User Manual January 2018 Oracle Financial Services Software Limited Oracle Park Off Western

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Corporate Customer Services User Manual Release 17.1.0.0.0 Part No. E83887-01 March 2017 Corporate Customer Services User Manual March 2017 Oracle Financial Services Software

More information

PayThankYou LLC Privacy Policy

PayThankYou LLC Privacy Policy PayThankYou LLC Privacy Policy Last Revised: August 7, 2017. The most current version of this Privacy Policy may be viewed at any time on the PayThankYou website. Summary This Privacy Policy covers the

More information

Overture Advertiser Workbook. Chapter 4: Tracking Your Results

Overture Advertiser Workbook. Chapter 4: Tracking Your Results Overture Advertiser Workbook Chapter 4: Tracking Your Results Tracking Your Results TRACKING YOUR RESULTS Tracking the performance of your keywords enables you to effectively analyze your results, adjust

More information

John Biancamano Inbound Digital LLC InboundDigital.net

John Biancamano Inbound Digital LLC InboundDigital.net John Biancamano Inbound Digital LLC 609.865.7994 InboundDigital.net About Me Owner of Inbound Digital, LLC digital marketing consulting and training: websites, SEO, advertising, and social media. Senior

More information

Affiliate Guide. Version Jan 2017

Affiliate Guide. Version Jan 2017 Website: http://magehit.com Contact: sale@magehit.com Affiliate Guide Version 4.0.5 - Jan 2017 Configuration Go to System >> Configurations >> MageHit >> Affiliate Pro (or Affiliate Pro >> Configuration)

More information

Personal Data collected for the following purposes and using the following services: Personal Data: address, first name and last name

Personal Data collected for the following purposes and using the following services: Personal Data:  address, first name and last name Privacy Policy This Application collects some Personal Data from its Users. POLICY SUMMARY Personal Data collected for the following purposes and using the following services: Contacting the User Contact

More information

place an order or Review your Patterson Advantage benefits and account information.

place an order or Review your Patterson Advantage benefits and account information. If you have an existing username and password for the website, select the Sign In button or enter your credentials in the Sign In field. To sign up for a new online account, select the Sign In button or

More information

Online Privacy Notice

Online Privacy Notice Online Privacy Notice The National Foundation for Credit Counseling, Inc. (referred to as NFCC, we, or us ) respects your privacy and is committed to maintaining and using your information responsibly.

More information

Commercial Online Banking. Quick Reference

Commercial Online Banking. Quick Reference Commercial Online Banking Quick Reference . All rights reserved. This work is confidential and its use is strictly limited. Use is permitted only in accordance with the terms of the agreement under which

More information

TechTarget, Inc. Privacy Policy

TechTarget, Inc. Privacy Policy This Privacy Policy (the Policy ) is designed to inform users of TechTarget, Inc., and its affiliates (collectively TechTarget ) network of websites about how TechTarget gathers and uses information provided

More information

Setup Google Analytics

Setup Google Analytics Setup Google Analytics 1.1 Sign Up Google Analytics 1. Once you have a Google account, you can go to Google Analytics (https://analytics.google.com) and click the Sign into Google Analytics button. You

More information

Privacy Policy. When you create an account or use our Service, we collect the following types of information from you:

Privacy Policy. When you create an account or use our Service, we collect the following types of information from you: Privacy Policy Last updated: 24 th July, 2017 Welcome to Kwalee.com (the Site ), provided by Kwalee Ltd. ( Kwalee ). This Kwalee.com Privacy Policy ( Policy ) describes the information we gather from you

More information

Effective Date: November 26, A. Overview

Effective Date: November 26, A. Overview WEI Technology LLC ( WEI, we or us ) takes your privacy seriously. Please read this Privacy Policy, which describes the types of information we collect through www.lendingpad.com (the Website ), and how

More information

Nespresso Consumer Privacy Notice

Nespresso Consumer Privacy Notice Nespresso Consumer Privacy Notice Effective: March 4, 2015 Last Updated On: March 4, 2015 Please read this Notice carefully to understand our policies and practices regarding your personal information

More information

We reserve the right to modify this Privacy Policy at any time without prior notice.

We reserve the right to modify this Privacy Policy at any time without prior notice. This Privacy Policy sets out the privacy policy relating to this site accessible at www.battleevents.com and all other sites of Battle Events which are linked to this site (collectively the Site ), which

More information

Our Commitment To Privacy PRIVACY POLICY. Last Modified July 26, 2018

Our Commitment To Privacy PRIVACY POLICY. Last Modified July 26, 2018 Our Commitment To Privacy PRIVACY POLICY Last Modified July 26, 2018 Please read this Privacy Policy carefully before using this online entertainment service. Access to and use of this online entertainment

More information

One Identity Starling Two-Factor Authentication. Administrator Guide

One Identity Starling Two-Factor Authentication. Administrator Guide One Identity Authentication Administrator Guide Copyright 2017 Quest Software Inc. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this

More information

Q New Features Guide

Q New Features Guide Q3 2010 New Features Guide 080410 2010 Blackbaud, Inc. This publication, or any part thereof, may not be reproduced or transmitted in any form or by any means, electronic, or mechanical, including photocopying,

More information

Hydraulic Institute Fall Conference 2018 Registration Step- By- Step Guide

Hydraulic Institute Fall Conference 2018 Registration Step- By- Step Guide Fall Conference 2018 Registration Step- By- Step Guide This User-Friendly Guide Provides a Step- By- Step Process to Register on the NEW Conference Registration System Section I: How to Register Yourself

More information

Microsoft Dynamics GP. Working With Configurations Release 10.0

Microsoft Dynamics GP. Working With Configurations Release 10.0 Microsoft Dynamics GP Working With Configurations Release 10.0 Copyright Copyright 2008 Microsoft Corporation. All rights reserved. Complying with all applicable copyright laws is the responsibility of

More information

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide

Stellar Phoenix Password Recovery For Windows Server. Version 2.0. User Guide Stellar Phoenix Password Recovery For Windows Server Version 2.0 User Guide Overview Stellar Phoenix Password Recovery For Windows Server is a powerful application that helps you reset a Windows Server

More information

Compass Consulting Group Terms of Use & Privacy Policy. Last Updated: 10/1/2018

Compass Consulting Group Terms of Use & Privacy Policy. Last Updated: 10/1/2018 Compass Consulting Group Terms of Use & Privacy Policy Last Updated: 10/1/2018 1. Introduction. At Compass Consulting Group LLC ( Compass, we, us, or our ), we recognize that your privacy is important.

More information

Table of Contents. 1.0 Terms and Conditions of Use Accessing Your HilltopSecurities Account Information... 3

Table of Contents. 1.0 Terms and Conditions of Use Accessing Your HilltopSecurities Account Information... 3 Table of Contents 1.0 Terms and Conditions of Use... 2 2.0 Accessing Your HilltopSecurities Account Information... 3 3.0 Accessing Your HilltopSecurities Account from the Quicken Download Page... 3 4.0

More information

Privacy Policy Mobiliya Technologies. All Rights Reserved. Last Modified: June, 2016

Privacy Policy Mobiliya Technologies. All Rights Reserved. Last Modified: June, 2016 Privacy Policy Last Modified: June, 2016 Your privacy is important to us. Through this document, we would like to give transparency to you on how Mobiliya Technologies Ltd. ( Mobiliya ) handle private

More information

Auto / Account Reconciler 2013

Auto / Account Reconciler 2013 Auto / Account Reconciler 2013 Build Notes ENCORE BUSINESS SOLUTIONS www.encorebusiness.com twitter.com/encorebusiness.com encore@encorebusiness.com Copyright Build Notes copyright 2016 Encore Business

More information

Terms of Use. Changes. General Use.

Terms of Use. Changes. General Use. Terms of Use THESE TERMS AND CONDITIONS (THE TERMS ) ARE A LEGAL CONTRACT BETWEEN YOU AND SPIN TRANSFER TECHNOLOGIES ( SPIN TRANSFER TECHNOLOGIES, STT, WE OR US ). THE TERMS EXPLAIN HOW YOU ARE PERMITTED

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Retail Accounts User Manual Release 17.2.0.0.0 Part No. E88573-01 July 2017 Retail Accounts User Manual July 2017 Oracle Financial Services Software Limited Oracle Park

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Corporate Customer Services User Manual Release 18.2.0.0.0 Part No. E97823-01 June 2018 Corporate Customer Services User Manual June 2018 Oracle Financial Services Software

More information

One Identity Quick Connect Express

One Identity Quick Connect Express One Identity Quick Connect Express for Active Directory 5.6.0 October 2017 These release notes provide information about the One Identity Quick Connect Express for Active Directory release. About New features

More information

2017 WorkPlace Mobile Application

2017 WorkPlace Mobile Application 2017 WorkPlace Mobile Application User Guide Paramount WorkPlace 2017 and Greater Table of Contents OVERVIEW... 3 GETTING STARTED... 3 Communication Architecture... 3 Mobile Device Requirements... 4 Establish

More information

Effective as of May 4, 2018

Effective as of May 4, 2018 Privacy Policies This document describes Wounded Warrior Project s ( WWP ) use of information regarding the warriors and families we serve, financial supporters of our mission, supporters under the age

More information

Affiliate Terms of Service

Affiliate Terms of Service Affiliate Terms of Service The following terms and conditions (the "Agreement") set out the legally binding terms of your participation in the Printful affiliate program (the "Program"). The Program is

More information

2. What is Personal Information and Non-Personally Identifiable Information?

2. What is Personal Information and Non-Personally Identifiable Information? Privacy Notice Snipp Interactive, Inc. Last Updated: February 11, 2016 Contents: 1. Introduction 2. What is Personal Information? 3. Information we collect about you 4. Use of Your Information 5. Location

More information

ALG Associates, LLC ( ALG Associates ) operates a website under. and has created this privacy policy to demonstrate its

ALG Associates, LLC ( ALG Associates ) operates a website under.   and has created this privacy policy to demonstrate its PRIVACY STATEMENT ALG Associates, LLC ( ALG Associates ) operates a website under www.warrantyconference.com and has created this privacy policy to demonstrate its commitment to the privacy of the users

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Retail Accounts User Manual Release 18.1.0.0.0 Part No. E92727-01 January 2018 Retail Accounts User Manual January 2018 Oracle Financial Services Software Limited Oracle

More information

SDR EDUCATIONAL CONSULTANTS

SDR EDUCATIONAL CONSULTANTS Foreign Educational Equivalencies APPLICATION for EVALUATION www.sdreducational.org Email: info@sdreducational.org Personal Information (all information is required unless indicated as optional) Full Name:

More information

PRIVACY POLICY OF CRYPTOFX500 CryptoFx500 collects some Personal Data from its Users.

PRIVACY POLICY OF CRYPTOFX500 CryptoFx500 collects some Personal Data from its Users. PRIVACY POLICY OF CRYPTOFX500 CryptoFx500 collects some Personal Data from its Users. DATA CONTROLLER AND OWNER NDG Trading - First Floor, First St. Vincent Bank Ltd Building James Street, Kingstown, St.

More information