Survey Request Automation

Survey Request Automation

One of the keys to success using the Testimonial Tree system is its automation features. Automating survey/feedback requests after a recent event (transaction, visit, etc) helps maximize response rates and makes things easier for our customers.

Import Overview

This document is designed to help explain the technical details necessary to create one time and recurring data imports within Testimonial Tree. The overall goal is to create a seamless user experience for professionals. Part of that experience is to make sure users have an account with updated data on Testimonial Tree and that feedback can be requested.

Data Transfer Options

There are a number of ways TT can get access to the data required for automation:

  1. Pull from customer's FTP
  2. Customer pushes to our FTP (or sFTP)
  3. TT pulls from URL hosted by customer (http or https)
  4. TT can pull from customer's API
  5. Customer can use TT's API 

If you chose to use TT's API, here is a link to some documentation:

https://documenter.getpostman.com/view/1022086/testimonialtree-api/2LNYbH#46a2bfb1-df90-9149-ee43-c543a15d2a84 

Import Setup (TT usually sets up these imports for enterprise customers)

Generally, TT will setup any imports for enterprise level customers.  We work with customers to make sure we map the data correctly, etc. 

Recurring Schedule

Scheduling can be set to only import the file at the time of import and no more, or it may be set to be a recurring import.

Testimonial Tree allows for a very wide range of import options. A start date and time must be first entered; all recurrences are based on the original start date and time. Imports can recur as frequently as hourly, but are able to recur once a day or weekly on selected days of the week. The ending can then be selected to either not end, end after a specified number of occurrences, or to end on a specific date.

For example, if an import is requested to recur daily starting on 1/1/2015 at 12:00PM GMT without end, then the import will happen every day at 7:00 AM Eastern until the end of time.

Notes:

  1. Recurring imports cannot use uploaded files, they are required to use an internet URL.
  2. Time is based on GMT. Testimonial Tree will try to note the local time when GMT Is entered but the computer must be in the correct time zone. Please use http://www.worldtimebuddy.com/ if there are any questions about time zones and execution times.

FTP Upload

Data for importing may optionally be uploaded to Testimonial Tree’s FTP server located at ftp.testimonialtree.com. (FTPS available, as well.)

There is no recurring schedule set within the import configuration for the FTP uploads, each upload is processed at the time of upload to the server.

During import configuration a copy of the data file is required. It is used for data column mapping and data integrity checks as well as for the first processing at the time of import creation.

The file uploaded to the FTP server must have the exact same filename as the file used in creating the import and must be unique between all of the imports created by a single user.

Data File

The data file can either be a single uploaded file (for one time imports only) or it can be an internet URL in XML, CSV, or PSV format.

URLs can either be HTTP, HTTPS, or FTP addresses. FTP will require the username and password for the FTP server to be entered. HTTP access must be publicly available for web requests to come in without authentication.

Mapping

Once the import type has been specified, imports are uploaded and pared for mapping. In this stage, each of the fields in the data set are displayed, and 5 rows of data are displayed. The dropdowns for each column/field should be set to the type of data. Once each column has been mapped with the dropdown then the data can be imported, and if it is a recurring it, the schedule is set in the scheduler. 

Survey Requests

Introduction

Survey requests allow for automated requests for survey responses to be sent out periodically without the need to send out requests manually, one at a time.

Fields

Below are the fields that Testimonial Tree is capable of importing for Survey Requests, not all fields are required and fields that are not used do not need to be in the import feed/file, they would not be mapped during the import setup process.

The Recording Userid/Email should be set to assign the results to a specific user if the response should not be assigned to the primary Userid/User Email.

Please be aware that the Userid and User Email are not both required to assign the response to the user, only one is needed if the response should be assigned to a specific user. This also is applicable for Recording Userid and Recording User Email.

Fields that are bold are required fields.

  • To Email Address - Recipient of the survey request
  • To Name - Name of recipient
  • Survey ID - ID of survey in TT (can get from admin screen)
  • Userid - userid of sender of survey (not required since it usually is enterprise level user)
  • Tracking ID - Can pass a unique tracking ID, if it exists
  • Recording Userid - Userid of sub-user in TT.  This ties the survey to that user.  
  • Recording User Email - If no recording userid exists, we can use the users's email
  • Email Template ID - not commonly used.  
  • *Custom Data Fields - Any other data can be passed in and stored. This is very helpful when pulling data back out or connecting data in TT to other datasets in outside systems.

Custom Data Fields

In addition to the standard fields for survey requests, custom field data may be sent in as well if custom fields have been defined within the survey. These fields must always be the last fields for each data row and must be defined in one of two ways depending on the data format.

If the chosen format is XML then the node name must be the custom field name and there must be an attribute of type=”datafield”

If the desired format is either CSV or PSV then the column name in the header must be wrapped in curly brackets

XML example: <my_custom_field type="datafield">XML test content</test_1>

CSV/PSV header example: {my_custom_field}

 The Tracking ID field is an optionally required field. What that means is that if advanced transactional notifications retries are required, it is required. If basic requests are all that are needed, then it is not required.

The Tracking ID is a unique ID per transaction request allowing for Testimonial Tree to track the request coming in the feed. This allows for multiple requests to be sent to the same person/email address but allowing them to be distinct and separate at the same time.

Notes:

  1. Custom data fields must come after every single other field, they are required to be the very last fields in the dataset whether it is XML or delimited data.

Data Format Example  

Testimonial Tree can handle XML, CSV, and PSV files, below is an example of an XML entry.

<?xml version="1.0" encoding="UTF-8"?>
<requests>              
<request>                              
<toemail>fred@yahoo.com</toemail>                          
<toname>Fred User</toname>                              
<surveyid>2</surveyid>                              
<trackingid>sale9204123</trackingid>                              
<userid>john</userid>                              
<useremail></useremail>                              
<emailtemplateid>1004</emailtemplateid>                              
<recorduserid>jane</recorduserid>                              
<recorduseremail></recorduseremail>                              
<test_1 type="datafield">XML test content</test_1>                               <new_home_consultant type="datafield">Custom data example</new_home_consultant>              
</request>
</requests>

Example Files

XML – http://www.testimonialtree.com/secure/import/examples/xml_surveyRequest.txt

CSV – http://www.testimonialtree.com/secure/import/examples/csv_surveyRequest.txt

PSV – http://www.testimonialtree.com/secure/import/examples/psv_surveyRequest.txt

Pipe - Pipe Delimited "|" works as well.  "|" instead of a comma.

API

Testimonial Tree has two API interfaces that allow users to be created and updated and testimonial requests sent on demand via either SOAP or REST calls. There is a separate document that outlines the API use and functionality.

https://documenter.getpostman.com/view/1022086/testimonialtree-api/2LNYbH#46a2bfb1-df90-9149-ee43-c543a15d2a84 

FTP Server Access

Server Name: ftp.testimonialtree.com

Username: <Testimonial Tree username>

Password: <Testimonial Tree password> 

FTP over TLS/SSL Server Access

Available for all accounts; change encryption option to "require explicit FTP over TLS"


Questions/Support

We have code examples available upon request and are always available to ansner any questions you may have.

Please contact:

support@TestimonialTree.com

(239) 424-9018



    • Related Articles

    • FTP Setup for Survey Automation

      Testimonial Tree can use either our FTP or your FTP site to help automate survey requests.  Below are our instructions on how you can access our FTP to automate survey requests.  If you do not already have a way to access our FTP site, you will need ...
    • Manually Request a Survey

      If you are not using an automated feed, or if you need to send a survey that may have not been sent through a feed, you can send a survey manually. Note that this feature is only available to the parent account, not a child/user account. Step 1: From ...
    • Sample Survey Questions: Real Estate

      Here are some example survey questions that some brokerages ask after a real estate closing.  Ideally, your survey is fairly short and the questions you choose are actionable.  Example Questions: Given the need to buy or sell a home in the same ...
    • How to View Survey Results and Reports

      You may want to run weekly, monthly or quarterly reports of your completed surveys. There are two places you can view survey reports: the Survey Dashboard and Survey Requests Sent. Survey Dashboard Step 1:  From the Dashboard, select Reports from the ...
    • How to Add Survey Meta Data

      Meta Data can be added to surveys to allow tracking of any data you require that is outside of the base use case of the Testimonial Tree software. Meta Data is most commonly used to augment the survey presented to your customers. By Adding a ...