SlideShare a Scribd company logo
CustomerGauge
API Webinar




       Adam Dorrell,
       CEO CustomerGauge/Directness
       11 October 2011
       Adam.dorrell@directness.net
Agenda

•    What is this all about?
•    Why use it?
•    Example usage
•    Setting it up
•    Data in
•    Data out
•    Salesforce example
CustomerGauge Overview
     Automated Net Promoter® Survey Platform
                                                             Email invite to
Customer Transaction                                         NPS Survey
(inbound calls, order entry, pro-                            (filter invites to
active contacts, pick-up, etc)                               eliminate over-contact)

                                                                                                            NPS Survey


                    Data
                    Upload




                                       Generate and Analyze live
                                       NPS reporting

                                       Track NPS trends, identify
                                       changing customer needs, identify                                      Immediate Service
                                       emerging issues or opportunities                                       Recovery Notification
                                       and take action.                                                       (Tactical Response)



                                                                                       ATTN: CUSTOMER
              NPS Score tracking                                                       REQUESTED HELP:
              Full text of responses                                                   “WHERE IS MY
                                                                                       SHIPMENT? I CALLED
              On-line reporting                                                        3 TIMES!”

   3                                                                                   j.smith@...
CustomerGauge – the connected World
    Today’s environment needs a platform approach

    Data Inputs                                         Invitation


      CRM                                                email

      ERP                                                SMS

Service Systems                                         Twitter

 E-Commerce                                           Phone etc
                                                                          Survey
Billing Systems                                        QR code
                                                                           PC

                                                                       Mobile/iPad

     Outputs                                                           Remote site

                                                                         Intranet
   BI systems                    Reporting          Issue Management
Testimonials/Public
       Web
                               Email report         Workflow systems
      CRM
                              Digital Signage
     Intranet                  Other display
                                 devices
Inputs into CustomerGauge
                                                                                                                            From CRM systems:
                                                                                                                            SalesForce.com, Microsoft
                                                                                                                            Dynamics, SugarCRM etc
                                                                                                                            Export file as CSV and select
                                                                                                                            fields needed.
FILE TYPES




                                                                   AUTOMATIC/MANUAL UPLOAD
                          CSV                                                                FTP/*SFTP
                          Comma Separated Variable Text                                      Send file via File             eCommerce Systems:
                          Example:
                          ID, Name, Email [CR]                                               Transfer Protocol to           DigitalRiver: Pre-built connector
                          2335, "John Smith”,
                          john.smith@email.com [CR]
                                                                                             CG                             available
                                                                                             *Small premium for SecureFTP
                                                                                                                            Others: Magento, SAP etc –
                                                                                                                            customisable as needed

                          TXT
                          Text, Tab Separated
                                                                                              Email                         ERP Systems:
                          Example:                                                            Send files as                 Customisable as needed
                          ID [TAB] Name [TAB] Email [CR]                                      attachment to a
                          2335 [TAB] John Smith [TAB]
                          john.smith@email.com [CR]                                           specified CG mailbox
                                                                                              Max 10Mb per day




                          XLS
                          Excel File / Google Spreadsheet
                          Example:                                                           API
                          NB take care with date format!                                     Use RESTful upload
                                                                                             for file transfer
                                                                                             Sample PHP script available




                          XML
                          XML file
                                                                    MANUAL OPTIONS
                          Example:
                          <customer><ID>2335</ID>
                          <email>john.smith@email.com</email></>                             In-Application
                                                                                             Manually upload files
                                                                                             Max 10Mb per day in HTTPS
                                                                                             secure environment. Small
                                                                                             premium charged                       Essential Fields
                          RSS                                                                                                      Email, Name, Date (of
                          Automated Data feed                                                                                      transaction etc), Country,
                                                                                             Assisted                              Segments A – D etc
                                                                                             CustomerGauge staff
                                                                                             clean, format, upload                 Formats: See
OTHER




                          Manual Entry                                                       data for you.
                          Enter customers one-by-one in                                                                            http://customergauge.com/
                                                                                             Charged by hour
                          pop-up form                                                                                              2010/03/customergauge-b2c-
                                                                                                                                   data-import-formats/
                         Copy & Paste
                         From spreadsheet into CG app


               AD 27 April 2011
In simple terms…




•    We have a variety of ways to get data in and out
•    It’s possible to interface to nearly any system
      –    Simply and speedily
      –    Example code available
•    For the API, we use well known interfaces, and several standard ‘methods’
      –    REST
      –    XML encoding
      –    Two factor security
      –    Reporting
The APIs are REST-based and we provide a sample code library for PHP. You can use the APIs by
using a
•    cURL command line to transfer a file, or a
•    http:// request using a GET request method
•    http://en.wikipedia.org/wiki/CURL
•    http://en.wikipedia.org/wiki/GET_%28HTTP%29#Request_methods
Details in our documentation

• 
CustomerGauge Application
Getting started

•    Get key
     from the API   API key
     page
•    Add any IP
     addresses
     you will be
     using          IP addresses
•    This page
     also shows
     number of
     accesses
     and time –
     helpful for
     trouble
     shooting
Common Errors

-  102 - API key is not valid or
   out of date
-  Invalid IP address (need to
   add IP address for security
   reasons)
Add IP address
Getting data out 1

•  GET method “getUserRecord” – retrieves data for an
   email address
   –  https://www.cg-express.com/API/api_server.php?
      email=Keith.Drury@directness.net&method=getUserRecord&api
      _key=31640332f10c84f6a80af07c131ee117

   –    Key parts of this:
   –    api_key=31640332f10c84f6a80af07c131ee117
   –    method=getUserRecord
   –    email=Keith.Drury@directness.net
Result
Alternative method

•  Upload the PHP class to your server
•  Call in program


<?
require_once("CGAPI1-1.class.php");

// Get your API key from Directness
$cgapi = new CGAPI("31640332f10c84f6a80af07c131ee117");

// Example how to use the api to get specific record by email

$cgapi->getUserRecord("adam.dorrell@directness.net");
?>
Other methods

•  Customer Number
   –  Method “getUserRecordCustomerNumber”
   –  https://www.cg-express.com/API/api_server.php?
      customerNumber=30025&method=getUserRecordCustomerNumber&a
      pi_key=31640332f10c84f6a80af07c131ee117

•  Company Name
   –  Method “getUserRecordCompany”
   –  https://www.cg-express.com/API/api_server.php?
      company=directness&method=getUserRecordCompany&api_key=3164
      0332f10c84f6a80af07c131ee117
Data In
•         Prepare XML file with 1 – 1000
          records
•         Call using method ‘xmlUpload’
•         Once loaded, the emails will send
          autmoatically, depending on rules

     <?
     //Adam test API Upload 11 - Oct 2011

     require_once("CGAPI1-1.class.php");

     // Get your API key from Directness
     $cgapi = new CGAPI("31640332f10c84f6a80af07c131ee117");

     // CustomerGauge IN
     // Example how to use the api to upload xml
     $cgapi->xmlUpload("UploadAd.xml");


     echo 'done load';

     ?>




     Alternative (use encoded path)
     https://www.cg-express.com/API/api_server.php?
     &api_key=31640332f10c84f6a80af07c131ee117&method=xmlUpload&xml_path=http%3A%2F
     %2F46.137.169.8%2FAPITest%2FUploadAd.xml
Remote surveying

•    Uses method “setUserRecord”
•    Used if a survey form is used on your system, for example at completion of
     certain internal task. Data is uploaded into CustomerGauge and new
     records created.
•    Example:
•    http://46.137.169.8/APITest/
And remote results

http://46.137.169.8/APITest/first_page.php

Try with adam233@directness.net in
email field

We share this simple PHP code

Application example, service portal
Company Summary

•  Get all the details for a company in a summary
•  You will need “secret key” for each company
•  https://www.cg-express.com/API/api_server.php?
   secretCode=CS9TG&method=getCompanySummary&a
   pi_key=31640332f10c84f6a80af07c131ee117
Result:
And even into Excel!
Use “Import XML” and the URL:
https://www.cg-express.com/API/api_server.php?
secretCode=CS9TG&method=getCompanySummary&api_key=31640332f10c84f6a80af07c131ee117
API – other applications

•  Salesforce
   –  Push to
      Salesforce
   –  Current
      customised on
      request
•  Sharepoint
   –  iframe and
      other methods
•  RSS
•  What else?
Thank You

•  More information on CustomerGauge.com
•  info@customergauge.com

More Related Content

What's hot

Jeremy Vickers Liquidity Hub
Jeremy Vickers Liquidity HubJeremy Vickers Liquidity Hub
Jeremy Vickers Liquidity Hubdeimos
 
Business Case-study for MEAP
Business Case-study for MEAPBusiness Case-study for MEAP
Business Case-study for MEAP
Jae Hak Lee
 
Azotel Aikom 8giugno2012 Bologna
Azotel Aikom 8giugno2012 BolognaAzotel Aikom 8giugno2012 Bologna
Azotel Aikom 8giugno2012 BolognaAikom Technology
 
Microsoft Media Platform Overview
Microsoft Media Platform OverviewMicrosoft Media Platform Overview
Microsoft Media Platform Overview
David Chou
 
Evanti presentation
Evanti presentationEvanti presentation
Evanti presentationEvanti_Sk
 
StrikeIron IronCloud API Web Service Publishing Platform SAAS
StrikeIron IronCloud API Web Service Publishing Platform SAASStrikeIron IronCloud API Web Service Publishing Platform SAAS
StrikeIron IronCloud API Web Service Publishing Platform SAAS
sibob
 
xyzmo 4 Finance White Paper
xyzmo 4 Finance White Paperxyzmo 4 Finance White Paper
xyzmo 4 Finance White PaperNamirial GmbH
 
Newgen Solutions for Telecom
Newgen Solutions for TelecomNewgen Solutions for Telecom
Newgen Solutions for Telecomnewgenpartners
 
Understanding the Third Wave of Customer Interaction
Understanding the Third Wave of Customer InteractionUnderstanding the Third Wave of Customer Interaction
Understanding the Third Wave of Customer Interaction
Cisco Canada
 
WIKIOCEAN
WIKIOCEANWIKIOCEAN
WIKIOCEAN
mahesh.panchal
 
Striving for an Outstanding IT Organization
Striving for an Outstanding IT OrganizationStriving for an Outstanding IT Organization
Striving for an Outstanding IT OrganizationHuberto Garza
 
Oracle FastForward Flows For SCM - Analyst Briefing
Oracle FastForward Flows For SCM - Analyst BriefingOracle FastForward Flows For SCM - Analyst Briefing
Oracle FastForward Flows For SCM - Analyst BriefingLeah Walling
 
OSS BSS BEST BOOK
OSS BSS BEST BOOKOSS BSS BEST BOOK
Compuware APM Solution
Compuware APM SolutionCompuware APM Solution
Compuware APM Solutionbackfire_88
 
Scaling MySQL: Catch 22 of Read Write Splitting
Scaling MySQL: Catch 22 of Read Write SplittingScaling MySQL: Catch 22 of Read Write Splitting
Scaling MySQL: Catch 22 of Read Write Splitting
ScaleBase
 
Increase Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support SystemsIncrease Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support Systems
Srikanth Minnam
 

What's hot (20)

Jeremy Vickers Liquidity Hub
Jeremy Vickers Liquidity HubJeremy Vickers Liquidity Hub
Jeremy Vickers Liquidity Hub
 
Business Case-study for MEAP
Business Case-study for MEAPBusiness Case-study for MEAP
Business Case-study for MEAP
 
Azotel Aikom 8giugno2012 Bologna
Azotel Aikom 8giugno2012 BolognaAzotel Aikom 8giugno2012 Bologna
Azotel Aikom 8giugno2012 Bologna
 
Synergy Fact Sheets
Synergy Fact SheetsSynergy Fact Sheets
Synergy Fact Sheets
 
Microsoft Media Platform Overview
Microsoft Media Platform OverviewMicrosoft Media Platform Overview
Microsoft Media Platform Overview
 
Evanti presentation
Evanti presentationEvanti presentation
Evanti presentation
 
StrikeIron IronCloud API Web Service Publishing Platform SAAS
StrikeIron IronCloud API Web Service Publishing Platform SAASStrikeIron IronCloud API Web Service Publishing Platform SAAS
StrikeIron IronCloud API Web Service Publishing Platform SAAS
 
xyzmo 4 Finance White Paper
xyzmo 4 Finance White Paperxyzmo 4 Finance White Paper
xyzmo 4 Finance White Paper
 
Newgen Solutions for Telecom
Newgen Solutions for TelecomNewgen Solutions for Telecom
Newgen Solutions for Telecom
 
Understanding the Third Wave of Customer Interaction
Understanding the Third Wave of Customer InteractionUnderstanding the Third Wave of Customer Interaction
Understanding the Third Wave of Customer Interaction
 
WIKIOCEAN
WIKIOCEANWIKIOCEAN
WIKIOCEAN
 
Striving for an Outstanding IT Organization
Striving for an Outstanding IT OrganizationStriving for an Outstanding IT Organization
Striving for an Outstanding IT Organization
 
Oracle FastForward Flows For SCM - Analyst Briefing
Oracle FastForward Flows For SCM - Analyst BriefingOracle FastForward Flows For SCM - Analyst Briefing
Oracle FastForward Flows For SCM - Analyst Briefing
 
OSS BSS BEST BOOK
OSS BSS BEST BOOKOSS BSS BEST BOOK
OSS BSS BEST BOOK
 
CRM Lead Lifecycle Process
CRM Lead Lifecycle ProcessCRM Lead Lifecycle Process
CRM Lead Lifecycle Process
 
Real estate manager
Real estate managerReal estate manager
Real estate manager
 
Compuware APM Solution
Compuware APM SolutionCompuware APM Solution
Compuware APM Solution
 
Eska bcrm
Eska bcrmEska bcrm
Eska bcrm
 
Scaling MySQL: Catch 22 of Read Write Splitting
Scaling MySQL: Catch 22 of Read Write SplittingScaling MySQL: Catch 22 of Read Write Splitting
Scaling MySQL: Catch 22 of Read Write Splitting
 
Increase Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support SystemsIncrease Agility & ROI: BPM in Business Support Systems
Increase Agility & ROI: BPM in Business Support Systems
 

Similar to CustomerGauge Net Promoter API Webinar 11oct2011

OpenSpan - A Better Way to Work, A Better Way to Manage
OpenSpan - A Better Way to Work, A Better Way to ManageOpenSpan - A Better Way to Work, A Better Way to Manage
OpenSpan - A Better Way to Work, A Better Way to ManageFrank Wagman
 
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
Lucas Jellema
 
Fully Automated Billing Verification
Fully Automated Billing VerificationFully Automated Billing Verification
Fully Automated Billing Verification
Reidar Sunde
 
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
Lucas Jellema
 
Monitoring analytics workshop marshall sponder for london - march 26th prese...
Monitoring analytics workshop  marshall sponder for london - march 26th prese...Monitoring analytics workshop  marshall sponder for london - march 26th prese...
Monitoring analytics workshop marshall sponder for london - march 26th prese...
Marshall Sponder
 
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
goodfriday
 
Crm application analysis tool
Crm application analysis toolCrm application analysis tool
Crm application analysis toolRalph Paglia
 
Scaling MySQL: Benefits of Automatic Data Distribution
Scaling MySQL: Benefits of Automatic Data DistributionScaling MySQL: Benefits of Automatic Data Distribution
Scaling MySQL: Benefits of Automatic Data Distribution
ScaleBase
 
Computaris – The Data Dividend
Computaris – The Data DividendComputaris – The Data Dividend
Computaris – The Data Dividend
Computaris
 
Crm Today Dinesh Chandrasekar
Crm Today Dinesh ChandrasekarCrm Today Dinesh Chandrasekar
Crm Today Dinesh Chandrasekar
Dr.Dinesh Chandrasekar PhD(hc)
 
Types o f information systems
Types o f information systemsTypes o f information systems
Types o f information systems
Bimbashree K.G
 
Salesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration SolutionSalesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration Solution
Rapidi ApS (formerly Data Backbone Software A/S)
 
Sybase Complex Event Processing
Sybase Complex Event ProcessingSybase Complex Event Processing
Sybase Complex Event Processing
Sybase Türkiye
 
Microsoft Platforma za Razvoj
Microsoft Platforma za RazvojMicrosoft Platforma za Razvoj
Microsoft Platforma za Razvoj
ITDogadjaji.com
 
Development Model for The Cloud
Development Model for The CloudDevelopment Model for The Cloud
Development Model for The Cloud
umityalcinalp
 
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex Liviu Claudiu Cismaru
 
The Evolution of Platforms - Drew Kurth and Matt Comstock
The Evolution of Platforms - Drew Kurth and Matt ComstockThe Evolution of Platforms - Drew Kurth and Matt Comstock
The Evolution of Platforms - Drew Kurth and Matt ComstockRazorfish
 
First Operational Technology (OT) High Performance Messaging Patterns for Ent...
First Operational Technology (OT) High Performance Messaging Patterns for Ent...First Operational Technology (OT) High Performance Messaging Patterns for Ent...
First Operational Technology (OT) High Performance Messaging Patterns for Ent...
Real-Time Innovations (RTI)
 
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ie
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ieGordon baisley - eircom - Introducing the EDM role with www.softtest.ie
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ie
David O'Dowd
 

Similar to CustomerGauge Net Promoter API Webinar 11oct2011 (20)

OpenSpan - A Better Way to Work, A Better Way to Manage
OpenSpan - A Better Way to Work, A Better Way to ManageOpenSpan - A Better Way to Work, A Better Way to Manage
OpenSpan - A Better Way to Work, A Better Way to Manage
 
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
Manage Agility through Manage-ability – Introducing Design Time at Run Time ...
 
Fully Automated Billing Verification
Fully Automated Billing VerificationFully Automated Billing Verification
Fully Automated Billing Verification
 
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
Instant Agility in Oracle Fusion Middleware through Design Time @ Run Time (O...
 
Monitoring analytics workshop marshall sponder for london - march 26th prese...
Monitoring analytics workshop  marshall sponder for london - march 26th prese...Monitoring analytics workshop  marshall sponder for london - march 26th prese...
Monitoring analytics workshop marshall sponder for london - march 26th prese...
 
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
Building Web-Based Line-of-Business Applications on the Microsoft Dynamics Li...
 
Crm application analysis tool
Crm application analysis toolCrm application analysis tool
Crm application analysis tool
 
Scaling MySQL: Benefits of Automatic Data Distribution
Scaling MySQL: Benefits of Automatic Data DistributionScaling MySQL: Benefits of Automatic Data Distribution
Scaling MySQL: Benefits of Automatic Data Distribution
 
Computaris – The Data Dividend
Computaris – The Data DividendComputaris – The Data Dividend
Computaris – The Data Dividend
 
Crm Today Dinesh Chandrasekar
Crm Today Dinesh ChandrasekarCrm Today Dinesh Chandrasekar
Crm Today Dinesh Chandrasekar
 
Types o f information systems
Types o f information systemsTypes o f information systems
Types o f information systems
 
Salesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration SolutionSalesforce.com to e-conomic Integration Solution
Salesforce.com to e-conomic Integration Solution
 
Sybase Complex Event Processing
Sybase Complex Event ProcessingSybase Complex Event Processing
Sybase Complex Event Processing
 
Microsoft Platforma za Razvoj
Microsoft Platforma za RazvojMicrosoft Platforma za Razvoj
Microsoft Platforma za Razvoj
 
Development Model for The Cloud
Development Model for The CloudDevelopment Model for The Cloud
Development Model for The Cloud
 
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
BAM CEP / Business Activity Monitoring , Complex Event Processingomplex
 
Search2012 ibm vf
Search2012 ibm vfSearch2012 ibm vf
Search2012 ibm vf
 
The Evolution of Platforms - Drew Kurth and Matt Comstock
The Evolution of Platforms - Drew Kurth and Matt ComstockThe Evolution of Platforms - Drew Kurth and Matt Comstock
The Evolution of Platforms - Drew Kurth and Matt Comstock
 
First Operational Technology (OT) High Performance Messaging Patterns for Ent...
First Operational Technology (OT) High Performance Messaging Patterns for Ent...First Operational Technology (OT) High Performance Messaging Patterns for Ent...
First Operational Technology (OT) High Performance Messaging Patterns for Ent...
 
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ie
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ieGordon baisley - eircom - Introducing the EDM role with www.softtest.ie
Gordon baisley - eircom - Introducing the EDM role with www.softtest.ie
 

More from CustomerGauge

Flashing Eye Robot / Teaching Electronic Circuits
Flashing Eye Robot / Teaching Electronic CircuitsFlashing Eye Robot / Teaching Electronic Circuits
Flashing Eye Robot / Teaching Electronic Circuits
CustomerGauge
 
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
CustomerGauge
 
Open Data Interchange for Net Promoter System
Open Data Interchange for Net Promoter System Open Data Interchange for Net Promoter System
Open Data Interchange for Net Promoter System
CustomerGauge
 
Chop Customer Churn! A webinar for SaaS companies, Sept 2013
Chop Customer Churn! A webinar for SaaS companies, Sept 2013Chop Customer Churn! A webinar for SaaS companies, Sept 2013
Chop Customer Churn! A webinar for SaaS companies, Sept 2013
CustomerGauge
 
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
CustomerGauge
 
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
CustomerGauge
 
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple StepsA GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
CustomerGauge
 
Net Promoter Score Cartoon, Czech language
Net Promoter Score Cartoon, Czech languageNet Promoter Score Cartoon, Czech language
Net Promoter Score Cartoon, Czech language
CustomerGauge
 
Bake retention into your eCommerce Pie - ecommerce webinar
Bake retention into your eCommerce Pie - ecommerce webinarBake retention into your eCommerce Pie - ecommerce webinar
Bake retention into your eCommerce Pie - ecommerce webinar
CustomerGauge
 
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
CustomerGauge
 
CustomerGauge Automatic Translation System
CustomerGauge Automatic Translation SystemCustomerGauge Automatic Translation System
CustomerGauge Automatic Translation System
CustomerGauge
 
Net Promoter Score Cartoon, Italian language
Net Promoter Score Cartoon, Italian languageNet Promoter Score Cartoon, Italian language
Net Promoter Score Cartoon, Italian language
CustomerGauge
 
Fighting the Fear of Feedback: CustomerGauge webinar
Fighting the Fear of Feedback: CustomerGauge webinarFighting the Fear of Feedback: CustomerGauge webinar
Fighting the Fear of Feedback: CustomerGauge webinar
CustomerGauge
 
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chartNet Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
CustomerGauge
 
Net Promoter Score comic, translated in Polish
Net Promoter Score comic, translated in PolishNet Promoter Score comic, translated in Polish
Net Promoter Score comic, translated in Polish
CustomerGauge
 
Philips: Automatic Loyalty Measurement and Retention Marketing
Philips: Automatic Loyalty Measurement and Retention MarketingPhilips: Automatic Loyalty Measurement and Retention Marketing
Philips: Automatic Loyalty Measurement and Retention Marketing
CustomerGauge
 
DemonstratorGauge Field Marketing Measurement
DemonstratorGauge Field Marketing MeasurementDemonstratorGauge Field Marketing Measurement
DemonstratorGauge Field Marketing Measurement
CustomerGauge
 
CustomerGauge B2b Net Promoter Score Measurement
CustomerGauge B2b Net Promoter Score MeasurementCustomerGauge B2b Net Promoter Score Measurement
CustomerGauge B2b Net Promoter Score Measurement
CustomerGauge
 
Building your Loyalty Robot
Building your Loyalty RobotBuilding your Loyalty Robot
Building your Loyalty Robot
CustomerGauge
 

More from CustomerGauge (19)

Flashing Eye Robot / Teaching Electronic Circuits
Flashing Eye Robot / Teaching Electronic CircuitsFlashing Eye Robot / Teaching Electronic Circuits
Flashing Eye Robot / Teaching Electronic Circuits
 
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
Flashing Eye Robot / "Flitsende Robot" Electronika Circuit (NL)
 
Open Data Interchange for Net Promoter System
Open Data Interchange for Net Promoter System Open Data Interchange for Net Promoter System
Open Data Interchange for Net Promoter System
 
Chop Customer Churn! A webinar for SaaS companies, Sept 2013
Chop Customer Churn! A webinar for SaaS companies, Sept 2013Chop Customer Churn! A webinar for SaaS companies, Sept 2013
Chop Customer Churn! A webinar for SaaS companies, Sept 2013
 
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
SalesForce.com Net Promoter Integration with CustomerGauge "Round-Tripping"
 
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
Microsoft HotMail v GMail v YahooMail: The giants of free email battle it out...
 
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple StepsA GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
A GOOD DAY TO ACT HARD: Take Action on Customer Feedback in 3 Simple Steps
 
Net Promoter Score Cartoon, Czech language
Net Promoter Score Cartoon, Czech languageNet Promoter Score Cartoon, Czech language
Net Promoter Score Cartoon, Czech language
 
Bake retention into your eCommerce Pie - ecommerce webinar
Bake retention into your eCommerce Pie - ecommerce webinarBake retention into your eCommerce Pie - ecommerce webinar
Bake retention into your eCommerce Pie - ecommerce webinar
 
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
Everyone Everywhere: Maximising Your Net Promoter® Response +60%!
 
CustomerGauge Automatic Translation System
CustomerGauge Automatic Translation SystemCustomerGauge Automatic Translation System
CustomerGauge Automatic Translation System
 
Net Promoter Score Cartoon, Italian language
Net Promoter Score Cartoon, Italian languageNet Promoter Score Cartoon, Italian language
Net Promoter Score Cartoon, Italian language
 
Fighting the Fear of Feedback: CustomerGauge webinar
Fighting the Fear of Feedback: CustomerGauge webinarFighting the Fear of Feedback: CustomerGauge webinar
Fighting the Fear of Feedback: CustomerGauge webinar
 
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chartNet Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
Net Promoter Score: Automatic Root Cause Analysis with a Waterfall chart
 
Net Promoter Score comic, translated in Polish
Net Promoter Score comic, translated in PolishNet Promoter Score comic, translated in Polish
Net Promoter Score comic, translated in Polish
 
Philips: Automatic Loyalty Measurement and Retention Marketing
Philips: Automatic Loyalty Measurement and Retention MarketingPhilips: Automatic Loyalty Measurement and Retention Marketing
Philips: Automatic Loyalty Measurement and Retention Marketing
 
DemonstratorGauge Field Marketing Measurement
DemonstratorGauge Field Marketing MeasurementDemonstratorGauge Field Marketing Measurement
DemonstratorGauge Field Marketing Measurement
 
CustomerGauge B2b Net Promoter Score Measurement
CustomerGauge B2b Net Promoter Score MeasurementCustomerGauge B2b Net Promoter Score Measurement
CustomerGauge B2b Net Promoter Score Measurement
 
Building your Loyalty Robot
Building your Loyalty RobotBuilding your Loyalty Robot
Building your Loyalty Robot
 

Recently uploaded

Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
Alison B. Lowndes
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
Paul Groth
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
Alan Dix
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
Guy Korland
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
OnBoard
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
KatiaHIMEUR1
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
Elena Simperl
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
Product School
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
Ana-Maria Mihalceanu
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Thierry Lestable
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Inflectra
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
DianaGray10
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
James Anderson
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
91mobiles
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Product School
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
Cheryl Hung
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
DanBrown980551
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
Jemma Hussein Allen
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
Dorra BARTAGUIZ
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
Thijs Feryn
 

Recently uploaded (20)

Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........Bits & Pixels using AI for Good.........
Bits & Pixels using AI for Good.........
 
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMsTo Graph or Not to Graph Knowledge Graph Architectures and LLMs
To Graph or Not to Graph Knowledge Graph Architectures and LLMs
 
Epistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI supportEpistemic Interaction - tuning interfaces to provide information for AI support
Epistemic Interaction - tuning interfaces to provide information for AI support
 
GraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge GraphGraphRAG is All You need? LLM & Knowledge Graph
GraphRAG is All You need? LLM & Knowledge Graph
 
Leading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdfLeading Change strategies and insights for effective change management pdf 1.pdf
Leading Change strategies and insights for effective change management pdf 1.pdf
 
Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !Securing your Kubernetes cluster_ a step-by-step guide to success !
Securing your Kubernetes cluster_ a step-by-step guide to success !
 
Knowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and backKnowledge engineering: from people to machines and back
Knowledge engineering: from people to machines and back
 
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
From Siloed Products to Connected Ecosystem: Building a Sustainable and Scala...
 
Monitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR EventsMonitoring Java Application Security with JDK Tools and JFR Events
Monitoring Java Application Security with JDK Tools and JFR Events
 
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
Empowering NextGen Mobility via Large Action Model Infrastructure (LAMI): pav...
 
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered QualitySoftware Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
Software Delivery At the Speed of AI: Inflectra Invests In AI-Powered Quality
 
UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4UiPath Test Automation using UiPath Test Suite series, part 4
UiPath Test Automation using UiPath Test Suite series, part 4
 
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
GDG Cloud Southlake #33: Boule & Rebala: Effective AppSec in SDLC using Deplo...
 
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdfSmart TV Buyer Insights Survey 2024 by 91mobiles.pdf
Smart TV Buyer Insights Survey 2024 by 91mobiles.pdf
 
Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...Designing Great Products: The Power of Design and Leadership by Chief Designe...
Designing Great Products: The Power of Design and Leadership by Chief Designe...
 
Key Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdfKey Trends Shaping the Future of Infrastructure.pdf
Key Trends Shaping the Future of Infrastructure.pdf
 
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
LF Energy Webinar: Electrical Grid Modelling and Simulation Through PowSyBl -...
 
The Future of Platform Engineering
The Future of Platform EngineeringThe Future of Platform Engineering
The Future of Platform Engineering
 
Elevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object CalisthenicsElevating Tactical DDD Patterns Through Object Calisthenics
Elevating Tactical DDD Patterns Through Object Calisthenics
 
Accelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish CachingAccelerate your Kubernetes clusters with Varnish Caching
Accelerate your Kubernetes clusters with Varnish Caching
 

CustomerGauge Net Promoter API Webinar 11oct2011

  • 1. CustomerGauge API Webinar Adam Dorrell, CEO CustomerGauge/Directness 11 October 2011 Adam.dorrell@directness.net
  • 2. Agenda •  What is this all about? •  Why use it? •  Example usage •  Setting it up •  Data in •  Data out •  Salesforce example
  • 3. CustomerGauge Overview Automated Net Promoter® Survey Platform Email invite to Customer Transaction NPS Survey (inbound calls, order entry, pro- (filter invites to active contacts, pick-up, etc) eliminate over-contact) NPS Survey Data Upload Generate and Analyze live NPS reporting Track NPS trends, identify changing customer needs, identify Immediate Service emerging issues or opportunities Recovery Notification and take action. (Tactical Response) ATTN: CUSTOMER NPS Score tracking REQUESTED HELP: Full text of responses “WHERE IS MY SHIPMENT? I CALLED On-line reporting 3 TIMES!” 3 j.smith@...
  • 4. CustomerGauge – the connected World Today’s environment needs a platform approach Data Inputs Invitation CRM email ERP SMS Service Systems Twitter E-Commerce Phone etc Survey Billing Systems QR code PC Mobile/iPad Outputs Remote site Intranet BI systems Reporting Issue Management Testimonials/Public Web Email report Workflow systems CRM Digital Signage Intranet Other display devices
  • 5. Inputs into CustomerGauge From CRM systems: SalesForce.com, Microsoft Dynamics, SugarCRM etc Export file as CSV and select fields needed. FILE TYPES AUTOMATIC/MANUAL UPLOAD CSV FTP/*SFTP Comma Separated Variable Text Send file via File eCommerce Systems: Example: ID, Name, Email [CR] Transfer Protocol to DigitalRiver: Pre-built connector 2335, "John Smith”, john.smith@email.com [CR] CG available *Small premium for SecureFTP Others: Magento, SAP etc – customisable as needed TXT Text, Tab Separated Email ERP Systems: Example: Send files as Customisable as needed ID [TAB] Name [TAB] Email [CR] attachment to a 2335 [TAB] John Smith [TAB] john.smith@email.com [CR] specified CG mailbox Max 10Mb per day XLS Excel File / Google Spreadsheet Example: API NB take care with date format! Use RESTful upload for file transfer Sample PHP script available XML XML file MANUAL OPTIONS Example: <customer><ID>2335</ID> <email>john.smith@email.com</email></> In-Application Manually upload files Max 10Mb per day in HTTPS secure environment. Small premium charged Essential Fields RSS Email, Name, Date (of Automated Data feed transaction etc), Country, Assisted Segments A – D etc CustomerGauge staff clean, format, upload Formats: See OTHER Manual Entry data for you. Enter customers one-by-one in http://customergauge.com/ Charged by hour pop-up form 2010/03/customergauge-b2c- data-import-formats/ Copy & Paste From spreadsheet into CG app AD 27 April 2011
  • 6. In simple terms… •  We have a variety of ways to get data in and out •  It’s possible to interface to nearly any system –  Simply and speedily –  Example code available •  For the API, we use well known interfaces, and several standard ‘methods’ –  REST –  XML encoding –  Two factor security –  Reporting The APIs are REST-based and we provide a sample code library for PHP. You can use the APIs by using a •  cURL command line to transfer a file, or a •  http:// request using a GET request method •  http://en.wikipedia.org/wiki/CURL •  http://en.wikipedia.org/wiki/GET_%28HTTP%29#Request_methods
  • 7. Details in our documentation • 
  • 9. Getting started •  Get key from the API API key page •  Add any IP addresses you will be using IP addresses •  This page also shows number of accesses and time – helpful for trouble shooting
  • 10. Common Errors -  102 - API key is not valid or out of date -  Invalid IP address (need to add IP address for security reasons)
  • 12. Getting data out 1 •  GET method “getUserRecord” – retrieves data for an email address –  https://www.cg-express.com/API/api_server.php? email=Keith.Drury@directness.net&method=getUserRecord&api _key=31640332f10c84f6a80af07c131ee117 –  Key parts of this: –  api_key=31640332f10c84f6a80af07c131ee117 –  method=getUserRecord –  email=Keith.Drury@directness.net
  • 14. Alternative method •  Upload the PHP class to your server •  Call in program <? require_once("CGAPI1-1.class.php"); // Get your API key from Directness $cgapi = new CGAPI("31640332f10c84f6a80af07c131ee117"); // Example how to use the api to get specific record by email $cgapi->getUserRecord("adam.dorrell@directness.net"); ?>
  • 15. Other methods •  Customer Number –  Method “getUserRecordCustomerNumber” –  https://www.cg-express.com/API/api_server.php? customerNumber=30025&method=getUserRecordCustomerNumber&a pi_key=31640332f10c84f6a80af07c131ee117 •  Company Name –  Method “getUserRecordCompany” –  https://www.cg-express.com/API/api_server.php? company=directness&method=getUserRecordCompany&api_key=3164 0332f10c84f6a80af07c131ee117
  • 16. Data In •  Prepare XML file with 1 – 1000 records •  Call using method ‘xmlUpload’ •  Once loaded, the emails will send autmoatically, depending on rules <? //Adam test API Upload 11 - Oct 2011 require_once("CGAPI1-1.class.php"); // Get your API key from Directness $cgapi = new CGAPI("31640332f10c84f6a80af07c131ee117"); // CustomerGauge IN // Example how to use the api to upload xml $cgapi->xmlUpload("UploadAd.xml"); echo 'done load'; ?> Alternative (use encoded path) https://www.cg-express.com/API/api_server.php? &api_key=31640332f10c84f6a80af07c131ee117&method=xmlUpload&xml_path=http%3A%2F %2F46.137.169.8%2FAPITest%2FUploadAd.xml
  • 17. Remote surveying •  Uses method “setUserRecord” •  Used if a survey form is used on your system, for example at completion of certain internal task. Data is uploaded into CustomerGauge and new records created. •  Example: •  http://46.137.169.8/APITest/
  • 18. And remote results http://46.137.169.8/APITest/first_page.php Try with adam233@directness.net in email field We share this simple PHP code Application example, service portal
  • 19. Company Summary •  Get all the details for a company in a summary •  You will need “secret key” for each company •  https://www.cg-express.com/API/api_server.php? secretCode=CS9TG&method=getCompanySummary&a pi_key=31640332f10c84f6a80af07c131ee117
  • 21. And even into Excel! Use “Import XML” and the URL: https://www.cg-express.com/API/api_server.php? secretCode=CS9TG&method=getCompanySummary&api_key=31640332f10c84f6a80af07c131ee117
  • 22. API – other applications •  Salesforce –  Push to Salesforce –  Current customised on request •  Sharepoint –  iframe and other methods •  RSS •  What else?
  • 23. Thank You •  More information on CustomerGauge.com •  info@customergauge.com