Purchase Tracking Web Service. Technical Documentation. Document Version 1.6

Size: px
Start display at page:

Download "Purchase Tracking Web Service. Technical Documentation. Document Version 1.6"

Transcription

1 Purchase Tracking Web Service Technical Documentation Document Version 1.6 Revision date 02/28/2014

2 2 1 Overview The PriceSpider Where-to-Buy (WTB) is an online and local retailer locator. Manufacturers will implement a WTB on their website to redirect users to retailers websites. Often times, users will make purchases at these retailers websites as a direct referral from the WTB. Purchase Tracking Web Service enables online retailers who do not participate in commission-sharing programs, like Commission Junction or LinkShare, to submit details of the WTB-referred purchase to PriceSpider. Please note that purchases from users not redirected through a PriceSpider WTB cannot be submitted to this tracking service. The tracking is implemented on the order confirmation page, such as the Thank You page, after the order has been completed. 2 PriceSpider Redirect ID (PSRID) PriceSpider dynamically appends a unique redirect parameter and redirect ID (psrid) to every outbound URL from a PriceSpider WTB to a retailer s website. For example: The psrid is dynamically populated and will vary from session to session, and user to user. Once a user is redirected to a retailer s site, the psrid must be retained by the retailer s site for the entire duration of the user s session. When the user has completed their order, the psrid, as well as purchase details, must be passed from the Thank You order confirmation page to PriceSpider. 3 Submitting Purchase Details Purchase details should be submitted from the order confirmation page with the psrid to PriceSpider after the user has completed their order using either a tracking GIF pixel or a tracking script. 3.1 Tracking GIF Pixel Tracking GIF pixels are flexible and can be used with many web programming languages, such as PHP, JavaScript, CGI Scripting, ASP, Perl, and Java. Construct an <img> tag and programmatically populate the values in the parameters. The psrid needs to be retrieved and retained from the redirect URL in order to populate in the pixel URL source. The remaining parameters will need to be populated with sales data from the user s purchase. Example tracking GIF pixel: <img alt="." src=" 30%2010:47am&purchaseTotal=128&d.1=sku=SKU01;mfg=MfgName1;productName=First%20Pro duct;unitprice=100.00;qty=1&d.2=sku=sku02; ;mfg=mfgname2;productname=second%20product;unitprice=14.00;qty=2" style="width:1px; height:1px" />

3 3 Parameters: Parameter values must be encoded. See section 3.3, Purchase Query Parameters for a list of optional and required parameters. Result: If the pixel URL source is accepted a 200 OK will be served with the image data for a blank 1x1 GIF image. Otherwise a 400 Bad Request will be returned if there are missing or badly formatted parameters. 3.2 Tracking Script The tracking script is an alternative approach to implementing the PriceSpider Purchase Tracking through JavaScript. It is based on the tracking GIF pixel, but removes the requirement to construct a proper pixel URL source. In addition, it offers the option to filter out order line items based on their manufacturer. This is a standalone script and does not require any additional third party libraries. The script must be programmatically populated with values in the parameters. The psrid needs to be retrieved and retained from the redirect URL in order to populate in the script. The remaining parameters will need to be populated with sales data from the user s purchase. Values should be programmatically populated in the tracking pixel. Below is a JavaScript illustrating the general concept of how this is done. This example is based on an order with two line-items, filtered to send purchase details for products manufacturer by ABC Co. only. Example of tracking script: <script type="text/javascript" src="//embedded.pricespider.com/repository/common/js/purchasetracking. js"></script> <script type="text/javascript"> // set order var order = { psrid: '123456', date: ' :47am', purchasetotal: 61.98, currency: 'USD', detail: [] }; // set order details order.detail.push({ sku: ' ', manufacturer: 'ABC Co.', name: 'ABC Co. Dictionary', unitprice: 4.99, qty: 1 }); order.detail.push({ sku: ' ', manufacturer: 'XYZ Inc.', name: 'XYZ 123 Hammer', unitprice: 56.99,

4 4 }); qty: 1 pswtb.purchasetracking.submit(order, ['ABC', 'ABC Co.']); </script> To submit an unfiltered order, use: pswtb.purchasetracking.submit(order); To submit a filtered order (where certain products should be included or excluded based on the manufacturer), use: pswtb.purchasetracking.submit(order, ['ABC', 'ABC Co.']); Parameters: Do not encode parameter values. See section 3.3, Purchase Query Parameters for a list of optional and required parameters. Result: If there were errors during the submission of the order, the script will raise exceptions. 3.3 Purchase Query Parameters Both the full and short versions of the parameter names are acceptable in the tracking GIF pixel and tracking script. - All parameter values in the tracking GIF pixel must be URL encoded. - Parameter values do not need to be encoded in the tracking script. Parameter Short Type Description redirectid psrid Integer; The psrid which was passed to the seller upon rid redirecting the user through PriceSpider redirect date t Date or DateTime String; Optional engine to the seller s website. The date of the order expected must be in a yyyymm-dd hh:mm{am pm} format. Time is presumed PST. For example, if the date and time are January 1, 2014 at 10:47 am, send it in the expected format encoded as follows: currency c String; Optional purchasetota l orderdiscoun t detail.1 detail.2 detail.3 pt od d.1 d.2 d.3 Numeric; Numeric; Optional String; %2010:47am The currency of the transaction. The accepted values are: USD, GBP, EURO, CAD. The default currency is USD. The order total before any final discounts. Can be decimals if purchase total has cents. The order discounts applied to the checkout total amount. Can be decimals if purchase total has cents. The detail parameters describe each line item from the order. Each contains a semi-column (;) delimited list of name-value pairs of detail describing each line item from the order. Example:

5 5 d.1=sku=sku01;productname=led%20tv;u nitprice=499;qty=1 For details, see Purchase Detail Parameters. Purchase Detail Parameters Parameter Short Type Description manufacturer mfg String; * The product s manufacturer or brand name. * for tracking script if excluding products by certain manufacturers. sku s String; The product s SKU. Manufacturer part number or UPC are preferable. productname n String; The product name. name Optional unitprice up Number; The unit price. Can be decimals if the unit price has cents. quantity qty q Integer; The quantity purchased. 4 Security All purchase tracking services support SSL (HTTPS) requests. PriceSpider does not return any executable content in the tracking responses and cannot obtain any additional information from the checkout page apart from what was intentionally passed through the tracking parameters. 5 Testing Manually trigger a test purchase, then let PriceSpider and/or the manufacturer you are working with know about this test purchase to make sure the implementation was successful. Please keep in mind that even if a call was made successfully with the test purchase, the details themselves need to be verified. For example, if the call included two purchases but PriceSpider is only sent the first purchase, then the syntax may need review. 6 Implementation Considerations During the implementation process of purchase tracking on your site, there are a few things you may need to watch out for to make sure the purchase details are passed from your site to PriceSpider. 6.1 Excluding Purchase Details It is preferable that purchase details for the entire order are sent in the call, but if there are restrictions on what details can be sent, feel free to only include certain purchase details as they

6 6 align with your company s business rules. For example, if you would like to include details for products made by Manufacturer A, but exclude details for products made by Manufacturers B, you will need logic in place that only populates the call with details for Manufacturer A s products. The actual implementation will vary based on the programming languages and web platforms used. Please keep in mind that the totals for quantity and price must reflect the total of only the purchase details in the call. For example, if three items were purchased in one order, but you only want to send us details for one of those items, the total price and total quantity must be only for that one item. 6.2 Purchase Details Provided Only data from the purchase details provided directly through the tracking GIF pixel will be sent to PriceSpider. For example, if PriceSpider is only passed the product name, quantity, and price of the purchased product(s), only those three pieces of information will be known to us. Likewise, if we are not passed the product name, we will not have this data in our system. 6.3 Syntax If incorrect syntax or unknown parameters are used, the tracking call may not be successful and result in no details or incorrect details being passed to PriceSpider. 6.4 Dynamic PSRIDs The psrid is not static. The psrid is unique to every user session and is retrieved directly from the redirect URL. Please make sure your website is able to retrieve the psrid every time a user visits your website. 6.5 Retrieving PSRIDs Since users have a tendency to navigate many webpages on a retailer s website, the psrid must be retrieved from the redirect URL and saved until the user places an order. At this point, the psrid and purchase details should be sent to PriceSpider directly from the order confirmation page.

Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide

Communicator. Conversion Tracking Implementation Guide February Conversion Tracking Implementation Guide Conversion Tracking Implementation Guide Communicator Conversion Tracking Implementation Guide Version 1.0 A guide to implementing conversion tracking on your website covering a standard setup as well

More information

Merchant Tracking Code Guide

Merchant Tracking Code Guide Merchant Tracking Code Guide October 2008 Contents 1. Introduction... 3 2. Data Protection Act... 4 3. Activation... 5 4. All pages... 5 5. Which tracking code should I use?... 6 6. Standard Tracking Integration...

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide 2 Checkout by Amazon TOC Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Connexity Feed Specifications. Data Feed Requirements. Required

Connexity Feed Specifications. Data Feed Requirements. Required Connexity Feed Specifications What is a data feed? A data feed is a file that contains all of your product information, such as product titles, URLs, image URLs, price, and other important pieces of information

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

Blackinton Design A Badge IFRAME/ Integration

Blackinton Design A Badge IFRAME/ Integration Overview This document contains instructions for integrating the Blackinton Design A Badge web technology into a dealer website. Integration is facilitated using the Blackinton Design A Badge Integration

More information

Co-Branded AHIP Site Access Instructions Enterprise Broker Contracting. Presentation for Centene Brokers

Co-Branded AHIP Site Access Instructions Enterprise Broker Contracting. Presentation for Centene Brokers Co-Branded AHIP Site Access Instructions Enterprise Broker Contracting Presentation for Centene Brokers Welcome! 2018 AHIP Certification Training Instructions: Centene encourages all producers to certify

More information

MARKETPLACE FEEDS - ERROR CODES

MARKETPLACE FEEDS - ERROR CODES MARKETPLACE FEEDS - ERROR CODES About this document This document provides the possible error codes you may see on your processing report and what to do to resolve them. Error Codes Error 15 Invalid image

More information

AlliedWallet QuickPay API

AlliedWallet QuickPay API AlliedWallet QuickPay API The AlliedWallet QuickPay API can process your online purchases with a minimal amount of programming. Both shopping cart and subscription transactions can be submitted. The QuickPay

More information

Rakuten.com Merchant Manual

Rakuten.com Merchant Manual Rakuten.com Merchant Manual 1 Table of Contents Signing into your Account..3-4 Manage Shipping Settings 5 Adding Header & Footer.6-9 List/Create a Product..10-17 o Create listing.11 o Create New Product...12

More information

Standard Checkout. HTML Implementation Guide. U.K. Version

Standard Checkout. HTML Implementation Guide. U.K. Version Standard Checkout HTML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables... 5 Overview of Checkout by Amazon... 7 Who Should Read This Document... 7 Prerequisites... 7 Your

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting up the Outgoing Mail Server, page 2 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

Implementation Guide. The essentials

Implementation Guide. The essentials Implementation Guide The essentials Hello! I am Romain, and I ll be your guide explaining the essential steps of the Nosto implementation! Follow the 7-key steps below and we will get your store live with

More information

eprocurement: Queries

eprocurement: Queries PROCUREMENT SERVICES eprocurement: Queries Purpose: To provide information to epro campus users. Security Access Requirement: All eprocurement users have access. Prerequisites: None. Find Help: For technical

More information

3. WWW and HTTP. Fig.3.1 Architecture of WWW

3. WWW and HTTP. Fig.3.1 Architecture of WWW 3. WWW and HTTP The World Wide Web (WWW) is a repository of information linked together from points all over the world. The WWW has a unique combination of flexibility, portability, and user-friendly features

More information

Do-It-Yourself Guide for Advertisers

Do-It-Yourself Guide for Advertisers Do-It-Yourself Guide for Advertisers Foreword Affinity's Advertiser DIY Guide is intended to provide Advertisers with helpful insights on how to best run their ad campaigns on the Affinity Ad Platform.

More information

Updated: 31 st October 2017 CONTENT CREATION

Updated: 31 st October 2017 CONTENT CREATION Updated: 3 st October 207 CONTENT CREATION What is Single Upload creation? Content creation by single upload method is a way to create an SKU in theseller Centre without doing any file uploads. SKU creation

More information

Factory Direct Ordering Hosted Vendor Solution Vendor Quick Start Guide V. 7.4 July 21, Developed by

Factory Direct Ordering Hosted Vendor Solution Vendor Quick Start Guide V. 7.4 July 21, Developed by Factory Direct Ordering Hosted Vendor Solution Vendor Quick Start Guide V. 7.4 July 21, 2016 Developed by FDO Hosted Vendor Solution Copyright 2012 Advance Stores Company, Incorporated ALL RIGHTS RESERVED,

More information

Inline Checkout Implementation Guide

Inline Checkout Implementation Guide Inline Checkout Implementation Guide TOC 2 Contents Overview of This Document... 3 Standard Checkout Amazon Overview of Checkout by Checkout Overview of Inline Amazon Checkout by Overview of Who Should

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

Selling on Fruugo guide to the XML Feed Format

Selling on Fruugo guide to the XML Feed Format Selling on Fruugo guide to the XML Feed Format Fruugo.com Ltd Fountain Street House, Ulverston, UK, LA12 7EQ www.fruugo.com 1 Contents 1. Introduction 3 2. XML Overview 4-5 a. Simply, what is XML? 4 b.

More information

Table of Contents. Introduction Technical Support Getting Started Data Synchronization General Website Settings...

Table of Contents. Introduction Technical Support Getting Started Data Synchronization General Website Settings... E-Commerce Table of Contents Introduction... 1 Technical Support... 1 Introduction... 1 Getting Started... 2 Data Synchronization... 2 General Website Settings... 3 Customer Groups Settings... 4 New Accounts

More information

Cart32 Store Builder User Manual

Cart32 Store Builder User Manual Cart32 Store Builder User Manual 1 Contents 1. Client and Sales Summaries... 3 2. Main Categories... 3 3. Store Builder Sub-Categories... 3 Categories... 4 Add a Category/Subcategory... 5 Edit a Category/Subcategory...

More information

OfficeMax Punchout Training Guide Version Number 1.0 Date: 12/14/2011

OfficeMax Punchout Training Guide Version Number 1.0 Date: 12/14/2011 Version Number 1.0 Date: 12/14/2011 Table of Contents Purchasing Page Introduction 2 Overview 2 Intended Audience 2 Documentation and Disclaimer 2 Instructions 3 Manage Orders 3 Shopping Lists 5 Searching

More information

Google Universal Analytics Integration Set-up

Google Universal Analytics Integration Set-up Google Universal Analytics Integration Set-up Ifbyphone s Google Universal Analytics Integration enables you to track your phone calls and push the data into the standard and custom reports in Universal

More information

User Guide. Document Version: 1.0. Solution Version: 365_102017_3_4

User Guide. Document Version: 1.0. Solution Version: 365_102017_3_4 User Guide Document Version: 1.0 Solution Version: 365_102017_3_4 Table of Contents How to Install Purchase Manager in your Dynamics 365?... 3 How to Configure Purchase Manager Security Roles in your Dynamics

More information

13. Databases on the Web

13. Databases on the Web 13. Databases on the Web Requirements for Web-DBMS Integration The ability to access valuable corporate data in a secure manner Support for session and application-based authentication The ability to interface

More information

Hewlett Packard Enterprise Smart Quote

Hewlett Packard Enterprise Smart Quote Hewlett Packard Enterprise Smart Quote User Guide for Reseller Table of contents 1 Introduction to Smart Quote... 3 1.1 What is Smart Quote?... 3 1.2 Who will use Smart Quote?... 3 1.3 Do I require a special

More information

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION

PVB CONTACT FORM 7 CALCULATOR PRO DOCUMENTATION PVB CONTACT FORM 7 CALCULATOR PRO 1.4.1 DOCUMENTATION CONTENTS Contents... 1 1. Installation... 1 2. Form tags... 2 2.1. Calculated value... 2 2.1.1. Example... 2 2.1.2. Formula... 2 2.1.2.1. Note on checkbox

More information

Checklist for Testing of Web Application

Checklist for Testing of Web Application Checklist for Testing of Web Application Web Testing in simple terms is checking your web application for potential bugs before its made live or before code is moved into the production environment. During

More information

Data API v1.9. Splio Customer Platform SPLIO Customer Platform - DATA API EN v1.docx

Data API v1.9. Splio Customer Platform SPLIO Customer Platform - DATA API EN v1.docx Data API v1.9 Splio Customer Platform 2018-08-20 SPLIO Customer Platform - DATA API 1.9 - EN - 2018-08-20- v1.docx Table of Contents Introduction... 4 Access... 4 Base URL...4 Europe hosting... 4 Asia

More information

Developer Resources: PIN2

Developer Resources: PIN2 Administrative Technology Services Technology and Data Services Developer Resources: PIN2 Contents Introduction... 2 Registering an Application... 2 Information Required for Registration... 3 Information

More information

Product Sales Report Pro v2.1 User's Manual

Product Sales Report Pro v2.1 User's Manual Product Sales Report Pro v2.1 User's Manual Thank you for purchasing the Product Sales Report plugin. This manual will guide you through installing and using the plugin. Installation 1. Login to your WordPress

More information

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK

KonaKart Shopping Widgets. 3rd January DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK KonaKart Shopping Widgets 3rd January 2018 DS Data Systems (UK) Ltd., 9 Little Meadow Loughton, Milton Keynes Bucks MK5 8EH UK Introduction KonaKart ( www.konakart.com ) is a Java based ecommerce platform

More information

COSC 2206 Internet Tools. The HTTP Protocol

COSC 2206 Internet Tools. The HTTP Protocol COSC 2206 Internet Tools The HTTP Protocol http://www.w3.org/protocols/ What is TCP/IP? TCP: Transmission Control Protocol IP: Internet Protocol These network protocols provide a standard method for sending

More information

Customization Program Easily customize your Toshiba Microsite and a Variety of Marketing Materials

Customization Program Easily customize your Toshiba Microsite and a Variety of Marketing Materials Customization Program Easily customize your Toshiba Microsite and a Variety of Marketing Materials Toshiba is excited to launch our enhanced customization program. The program allows Dealers to customize

More information

CIS Homework 9

CIS Homework 9 CIS 318 - Homework 9 p. 1 Deadline: Due by 11:59 pm on FRIDAY, April 29 How to submit: CIS 318 - Homework 9 Submit your files for this homework using ~st10/318submit on nrs-labs, with a homework number

More information

SPS Hanger Store User Tutorial

SPS Hanger Store User Tutorial SPS Hanger Store User Tutorial New Improvements 2018 The following improvements were made to the SPS Hanger Store based on criteria extracted from clinic feedback and user data. Our goal is to continue

More information

Product Datafeeds & ShopWindow

Product Datafeeds & ShopWindow Product Datafeeds & ShopWindow Contents 1. An Introduction to ShopWindow... 3 2. Terminolgy... 4 3. Creating a product data feed for use in ShopWindow... 5 4. File Formatting... 8 5. How to upload and

More information

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access

HKTA TANG HIN MEMORIAL SECONDARY SCHOOL SECONDARY 3 COMPUTER LITERACY. Name: ( ) Class: Date: Databases and Microsoft Access Databases and Microsoft Access Introduction to Databases A well-designed database enables huge data storage and efficient data retrieval. Term Database Table Record Field Primary key Index Meaning A organized

More information

Event Guest Parking. Register License Plate Online Ahead of Time

Event Guest Parking. Register License Plate Online Ahead of Time Event Guest Parking Register License Plate Online Ahead of Time Setting up the event: event coordinators will fill out an event parking request form will the date(s) (as far ahead of time as you want)

More information

User Guide for Direct Post Method Direct Redirect

User Guide for Direct Post Method Direct Redirect User Guide for Direct Post Method Direct Redirect Version 4.0 Last Updated: 10/2/2017 Table of Contents Document Version... 4 Contact Information... 4 Direct Post Options... 5 Introduction... 6 1 Concept

More information

FAQ S About Unicâmbio Prepaid Card

FAQ S About Unicâmbio Prepaid Card FAQ S About Unicâmbio Prepaid Card What are the advantages of the Unicâmbio Prepaid Card when compared with a credit or debit card? Security. It is common knowledge that the risks of credit and debit cards

More information

APPLICATION USER GUIDE

APPLICATION USER GUIDE APPLICATION USER GUIDE Application: Analytics Version: 1.0 Description: Analytics provides a complete view of your website analytics and usage. Page 2 of 59 Analytics 1.0 Summary Contents 1 ANALYTICS...

More information

CREATING & UPLOADING MULTIPLE PRODUCTS

CREATING & UPLOADING MULTIPLE PRODUCTS CREATING & UPLOADING MULTIPLE PRODUCTS Introduction This guide will lead you step by step to create multiple products using a single batch upload in Seller Center. Before you begin, make sure you have

More information

Sliding PayPal Shopping Cart 2 DMXzone

Sliding PayPal Shopping Cart 2 DMXzone Table of contents Table of contents... 1 About Sliding PayPal Shopping Cart 2... 2 Features in Detail... 3 The Basics: Use Sliding PayPal Shopping Cart 2 on your Page... 21 Advanced: Different Options

More information

Woolworths Price Form

Woolworths Price Form Woolworths Price Form Reference Guide Doc ID #1397 Last updated 19 February 2018 Copyright Woolworths Group Page 1 of 16 Contents Purpose Key Things to Know Forms Tool Validation Messages Woolworths Price

More information

Merchant e-solutions Payment Acceptance User Guide for Magento (M1)

Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Merchant e-solutions Payment Acceptance User Guide for Magento (M1) Step-by-step guidance for setup and use of the Payment Acceptance extension for Magento 1 Table of Contents Key Contacts... 3 Extension

More information

Receive Jobs Technical Integration

Receive Jobs Technical Integration Receive Jobs Technical Integration Version 1.3 Jobg8 Limited Version 1.3 1 Document Version History Date Version Description Author 23 Sept 2013 1.0 Initial version Brad O Connor 18 Feb 2014 1.1 Added

More information

Standard Checkout. XML Implementation Guide. U.K. Version

Standard Checkout. XML Implementation Guide. U.K. Version Standard Checkout XML Implementation Guide U.K. Version 2013-09-05 Contents 3 Contents List of Tables.. 5 Overview of Checkout by Amazon.. 7 Who Should Read This Document. 7 Prerequisites. 7 Your Tasks

More information

Startup Guide. Version 1.7

Startup Guide. Version 1.7 Startup Guide 1 INTRODUCTION 3 COMPANIES & USERS 4 Companies & Users Licensee Offices 4 Companies & Users Insurers 6 Companies & Users Distributors 7 Companies & Users Users 8 Reset Password 10 Companies

More information

Partner Web Services. GetMyPrice Service Manual

Partner Web Services. GetMyPrice Service Manual Partner Web Services GetMyPrice Service Manual Contents 1 Introduction... 5 1.1 Overview... 5 1.2 Supporting Resources... 5 2 Service Overview... 5 2.1 Benefits of GetMyPrice Service... 6 3 Service Endpoints...

More information

Universal Data Object Guide

Universal Data Object Guide Universal Data Object Guide Version 1.8 Examples and Best Practices 2015 Tealium, Inc. All rights reserved. Table of Contents The Universal Data Object... 4 UDO Variable Guidelines... 4 UDO Best Practices...

More information

Exam : 9A Title : Adobe GoLive CS2 ACE Exam. Version : DEMO

Exam : 9A Title : Adobe GoLive CS2 ACE Exam. Version : DEMO Exam : 9A0-046 Title : Adobe GoLive CS2 ACE Exam Version : DEMO 1. Which scripting language is the default for use with ASP, and does NOT require a language specification at the beginning of a Web page's

More information

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373)

SPARROW Gateway. Custom Payment Redirect. Version (Build 7373) SPARROW Gateway Custom Payment Redirect Version 3.2.0 (Build 7373) Released September 2016 Revision History Date Revision Comments Author 2015 06 09 1.0 Initial document created Blinova Alexandra 2 Table

More information

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community

PayPal Home Support Search PayPal Developer Central Search. Developer Home Partner Solutions How to Library Training Community 1 of 16 1/5/2011 3:56 PM PayPal Home Support Search PayPal Developer Central Search Developer Home Partner Solutions How to Library Training Community Integration Overview HTML Overview Website Payments

More information

Meijer.com Style Guide

Meijer.com Style Guide TABLE OF CONTENTS Meijer.com Style Guide John Green Information Architect November 14, 2011 1. LAYOUT... 2 1.1 PAGE LAYOUT... 2 1.1.1 Header... 2 1.1.2 Body / Content Area... 3 1.1.2.1 Top-Level Category

More information

Episerver Reach. Mail User Guide

Episerver Reach. Mail User Guide Episerver Reach Mail User Guide Episerver Reach Mail User Guide 18-6 Table of Contents 3 Table of contents Overview of Mail 6 Accessing Mail 8 Setting up a Mail campaign 11 Styling the product information

More information

Data Import Guide DBA Software Inc.

Data Import Guide DBA Software Inc. Contents 3 Table of Contents 1 Introduction 4 2 Data Import Instructions 5 3 Data Import - Customers 10 4 Data Import - Customer Contacts 16 5 Data Import - Delivery Addresses 19 6 Data Import - Suppliers

More information

KNET API Integration Guide

KNET API Integration Guide KNET API Integration Guide API INTEGRATION GUIDE VERSION 1.0 1 Table of Contents 1. Overview...5 1.1 Scope...5 1.2 Target Audience...5 1.3 Assistance...5 1.4 Documentation Feedback...5 2 KNET Transaction

More information

Lecture 9a: Sessions and Cookies

Lecture 9a: Sessions and Cookies CS 655 / 441 Fall 2007 Lecture 9a: Sessions and Cookies 1 Review: Structure of a Web Application On every interchange between client and server, server must: Parse request. Look up session state and global

More information

Oracle Order Capture. Dependencies. Related Documentation and Resources. Implementation Guide

Oracle Order Capture. Dependencies. Related Documentation and Resources. Implementation Guide Oracle Order Capture Implementation Guide Release 11i August 2000 Part No. A86137-01 This topic group provides general descriptions of the set up and configuration tasks required to implement the application

More information

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1

Users Manual. Payment Registration Software v User Manual. Revision Date: 5/20/2014 1 Payment Registration Software v. 5.00 User Manual Revision Date: 5/20/2014 1 Table of Contents I. Introduction... 4 II. Smith Payment Registration Pro Module... 4 III. Prerequisites... 4 IV. Installing

More information

Managing System Administration Settings

Managing System Administration Settings This chapter contains the following sections: Setting Up the Outgoing Mail Server, page 1 Working with Email Templates, page 2 Configuring System Parameters (Optional), page 5 Updating the License, page

More information

ARS User s Manual. Vs This manual can be found online at

ARS User s Manual. Vs This manual can be found online at ARS User s Manual Vs. 8.4 This manual can be found online at http://intramalls.com/main/pdf/ars_users_manual.pdf IntraMalls LLC Agricultural Research Service IntraMall Table of Contents (Click on Topic

More information

830 Planning Schedule with Release Capability

830 Planning Schedule with Release Capability 830 Planning Schedule with Release Capability Introduction: Functional Group ID=PS This Draft Standard for Trial Use contains the format and establishes the data contents of the Planning Schedule with

More information

Create an ebay Listing

Create an ebay Listing Create an ebay Listing Step 1 ebay Listings Screen In this video we will go through how to create a listing with the Advanced Listing Creator. Once you have found an item to list by following the Prime

More information

Comodo Accounts Management Software Version 15.0

Comodo Accounts Management Software Version 15.0 2 Comodo Accounts Management Software Version 15.0 Reseller Portal Guide Guide Version 15.0.072117 Comodo Security Solutions 1255 Broad Street Clifton, NJ 07013 Table of Contents 1.The Reseller Portal...

More information

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout 2 Checkout by Amazon TOC Contents Overview of Checkout by Amazon Inline Standard Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Slybroadcast Global API Documentation Version 3.0 June 2018

Slybroadcast Global API Documentation Version 3.0 June 2018 Slybroadcast Global API Documentation Version 3.0 June 2018 MobileSphere 7 Faneuil Hall Marketplace, 4 th Floor Boston, MA 617.399.9980 1 Slybroadcast API 1. MobileSphere s slybroadcast API MobileSphere

More information

Case Study. CMS for Management of Monetization Training Resources

Case Study. CMS for Management of Monetization Training Resources Case Study CMS for Management of Monetization Training Resources Client Requirement The client is a digital marketing company providing efficient strategies for marketing and data monetization to their

More information

PDshop.NET Administrator s Guide (PDAdmin User Manual)

PDshop.NET Administrator s Guide (PDAdmin User Manual) PDshop.NET Administrator s Guide (PDAdmin User Manual) PageDown Technology, LLC / Copyright 2003-2007 All Rights Reserved. Last Updated: 7/25/07 Written for Revision: 1.014 1 Table of Contents Table of

More information

Efasst Negotiation Platform. Quick Start Guide

Efasst Negotiation Platform. Quick Start Guide Efasst Negotiation Platform Quick Start Guide Date of Document Preparation: October 2013 1 Quick Start Guide Structure 1 What is Efasst? 2 What should I know before using Efasst Negotiation Platform? 3

More information

846 RAPID Inventory Inquiry/Advice Standard

846 RAPID Inventory Inquiry/Advice Standard 846 RAPID Inventory Inquiry/Advice Standard Functional Group ID=IB Introduction: This Standard contains the format and establishes the data contents of the Inventory Inquiry/Advice Transaction Set (846)

More information

SPS Online Store User Tutorial

SPS Online Store User Tutorial SPS Online Store User Tutorial New Improvements 2018 The following improvements were made to the SPS Online Store based on criteria extracted from your feedback and user data. Our goal is to continue to

More information

User Scripting April 14, 2018

User Scripting April 14, 2018 April 14, 2018 Copyright 2013, 2018, Oracle and/or its affiliates. All rights reserved. This software and related documentation are provided under a license agreement containing restrictions on use and

More information

CIF CATALOG TRAINING GUIDE Ariba, Inc. All rights reserved.

CIF CATALOG TRAINING GUIDE Ariba, Inc. All rights reserved. CIF CATALOG TRAINING GUIDE Agenda Roles/Responsibilities Creating the CIF Using the CIF template Required Fields Uploading the Catalog to the Ariba Network Catalog Upload/Publish Process Updating Catalog

More information

DSWR User Guide. In effect from January 29 th,, BCLDB Direct Sales Web Reporting User Guide Page 1

DSWR User Guide. In effect from January 29 th,, BCLDB Direct Sales Web Reporting User Guide Page 1 DSWR User Guide In effect from January 29 th,, 2017 BCLDB Direct Sales Web Reporting User Guide Page 1 Contents Introduction... 4 Before You Get Started... 4 Registering for the DSWR Application... 5 Log-in...

More information

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation

ACTIVANT. Prophet 21 ACTIVANT PROPHET 21. New Features Guide Version 11.0 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) Pre-Release Documentation I ACTIVANT ACTIVANT PROPHET 21 Prophet 21 ADMINISTRATION NEW FEATURES GUIDE (SS, SA, PS) New Features Guide Version 11.0 Version 11.5 Pre-Release Documentation This manual contains reference information

More information

WAM!NET Submission Icons. Help Guide. March 2015

WAM!NET Submission Icons. Help Guide. March 2015 WAM!NET Submission Icons Help Guide March 2015 Document Contents 1 Introduction...2 1.1 Submission Option Resource...2 1.2 Submission Icon Type...3 1.2.1 Authenticated Submission Icons...3 1.2.2 Anonymous

More information

SEO Case Study: How We Increased Traffic from the Conversion Pages by 60% Client: Turkeyhomes.com

SEO Case Study: How We Increased Traffic from the Conversion Pages by 60% Client: Turkeyhomes.com SEO Case Study: How We Increased Traffic from the Conversion Pages by 60% Client: Turkeyhomes.com Client Turkeyhomes.com sells extremely high quality real estate in Turkey to a global audience. This company

More information

Creating Purchase Requisition

Creating Purchase Requisition -Type NEXT in Block then click NEXT BLOCK or leave blank and Click NEXT BLOCK icon. The system will assign the next number in the sequence. Either way is correct. Using Copy Button To copy the data from

More information

December Copyright 2018 Open Systems Holdings Corp. All rights reserved.

December Copyright 2018 Open Systems Holdings Corp. All rights reserved. This document describes the intended features and technology for TRAVERSE 11 as of December, 2018. Features and technology are subject to change and there is no guarantee that any particular feature or

More information

Programming the World Wide Web by Robert W. Sebesta

Programming the World Wide Web by Robert W. Sebesta Programming the World Wide Web by Robert W. Sebesta Tired Of Rpg/400, Jcl And The Like? Heres A Ticket Out Programming the World Wide Web by Robert Sebesta provides students with a comprehensive introduction

More information

CMSnipcart Documentation

CMSnipcart Documentation CMSnipcart Documentation Release 1.0.0 CMExtension January 07, 2016 Contents 1 Overview 3 1.1 Technical Requirements......................................... 3 1.2 Features..................................................

More information

Ajax Error Code 500 State 4

Ajax Error Code 500 State 4 Ajax Error Code 500 State 4 Builds AJAX request and sends it to ASP page function sendinfo(x,y,z)( if (window. information to be sent, it only returns the else case of "Error with ready state: 4 and status:

More information

Supply Cars Affiliate Manual Version 1.0

Supply Cars Affiliate Manual Version 1.0 Supply Cars Affiliate Manual Version 1.0 Contents Introduction Technology Suppliers Booking engine integration Affiliate Support Coverage Downtime Security Commission How we work Booking engine integration

More information

Getting Started with Online Payments

Getting Started with Online Payments Getting Started with Online Payments Getting Started... 2 Steps for the Online Payment Process... 2 Step 1 Customer Visits Web Site... 2 Step 2 Redirected to Payment Center... 2 Step 3 Status Determined...

More information

Checkout by Amazon Widget Reference Guide - Inline Checkout

Checkout by Amazon Widget Reference Guide - Inline Checkout Checkout by Amazon Widget Reference Guide - Inline Checkout TOC 2 Contents Overview of This Document... 3 Overview of Checkout by Amazon Inline Checkout... 3 Who Should Read This Document...3 Prerequisites...

More information

Newegg Elite Seller Program Guide

Newegg Elite Seller Program Guide Newegg Elite Seller Program Guide Newegg Elite Seller Program offers three types of membership for different business model of sellers: Standard, Professional, and Enterprise. This guide will help you

More information

Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide

Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide Enhanced Ecommerce Tracking with Google Tag Manager - Installation/Set-up Guide 1. Disable Compilation Mode: To check that this is disabled, go to System- >Tools->Compilation. If the compiler status is

More information

AN OVERVIEW OF SEARCHING AND DISCOVERING WEB BASED INFORMATION RESOURCES

AN OVERVIEW OF SEARCHING AND DISCOVERING WEB BASED INFORMATION RESOURCES Journal of Defense Resources Management No. 1 (1) / 2010 AN OVERVIEW OF SEARCHING AND DISCOVERING Cezar VASILESCU Regional Department of Defense Resources Management Studies Abstract: The Internet becomes

More information

CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Bidding. Vendor Portal Instructions Central Susquehanna Intermediate Unit, USA

CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Bidding. Vendor Portal Instructions Central Susquehanna Intermediate Unit, USA CENTRAL SUSQUEHANNA INTERMEDIATE UNIT Application: Bidding Vendor Portal Instructions 2013 Central Susquehanna Intermediate Unit, USA Table of Contents Introduction... 1 Technical Needs... 2 Vendor Access...

More information

Payment Pages Customisation Version 2

Payment Pages Customisation Version 2 Version 2 Published: 19 February 2018 2.1.10 Table of Contents 1 Introduction... 3 1.1 Useful documents... 3 1.2 Process Overview... 3 2 Profiles... 4 2.1 Requirements... 4 3 Uploading the files... 5 3.1

More information

Locate your Advanced Tools and Applications

Locate your Advanced Tools and Applications MySQL Manager is a web based MySQL client that allows you to create and manipulate a maximum of two MySQL databases. MySQL Manager is designed for advanced users.. 1 Contents Locate your Advanced Tools

More information

JUSTIN BRANDS, INC. B2B: DEALER QUICK START

JUSTIN BRANDS, INC. B2B: DEALER QUICK START JUSTIN BRANDS, INC. B2B: DEALER QUICK START Dealer Quick Start Guide JUSTIN BRANDS, INC. 610 West Daggett Ave, Fort Worth, Texas Revised: 1/20/2017 By: Robert Badger Summary: JUSTIN BRANDS, INC. B2B: DEALER

More information

Shankersinh Vaghela Bapu Institue of Technology

Shankersinh Vaghela Bapu Institue of Technology Branch: - 6th Sem IT Year/Sem : - 3rd /2014 Subject & Subject Code : Faculty Name : - Nitin Padariya Pre Upload Date: 31/12/2013 Submission Date: 9/1/2014 [1] Explain the need of web server and web browser

More information

Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L

Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L Pricing Cloud: Upgrading to R13 - Manual Price Adjustments from the R11/R12 Price Override Solution O R A C L E W H I T E P A P E R A P R I L 2 0 1 8 Disclaimer The following is intended to outline our

More information

Woolworths Price Form Reference Guide

Woolworths Price Form Reference Guide Purpose The purpose of the Woolworths Price Form (WPF) is to provide Woolworths 1 with pricing information for new and existing Articles. It is not used for promotional deals. The WPF is applicable to

More information

CM Coupon Listing Documentation

CM Coupon Listing Documentation CM Coupon Listing Documentation Release 2.1.0 CMExtension March 03, 2015 Contents 1 Overview 3 1.1 License.................................................. 3 1.2 Technical Requirements.........................................

More information