Introduction. Typographical conventions. Prerequisites. QuickPrints SDK for Windows 8 Version 1.0 August 06, 2014

Size: px
Start display at page:

Download "Introduction. Typographical conventions. Prerequisites. QuickPrints SDK for Windows 8 Version 1.0 August 06, 2014"

Transcription

1 Introduction The QuickPrints SDK for Windows 8 provides a set of APIs that can be used to submit a photo print order to a Walgreens store. This document gives step-by-step directions on how to integrate the QuickPrints SDK into a Windows 8 desktop or tablet application. Typographical conventions Classes, methods, variables, field names, and parameter names shall be appear in a fixed-width font Blocks of code will appear in gray boxes with a fixed-width font o Text with a yellow highlight within a block of code are to be replaced with what the text describes; i.e. if affiliate ID is highlighted, then replace that text with an affiliate ID Red colored text should always be read carefully Prerequisites The following items are required in order to use the Walgreens QuickPrints SDK for Windows 8: be utilizing Windows Software Development Kit (SDK) for Windows 8 be developing an application for the United States o QuickPrints is only available via Walgreens, which currently does not have any stores outside of the United States and Puerto Rico have a user account on the Walgreens Developer Portal have an API key have an Affiliate ID have a unique Publisher ID, in order to earn a revenue share commission on photo orders submitted to and sold by Walgreens ensure that all image files to be printed exist in, or be converted to JPEG (.jpg) format prior to being uploaded to Walgreens (or referenced via URL) Instructions on how to get a user account, API key, Affiliate ID, and Publisher ID are listed below. 1

2 Registering with Walgreens To setup a developer account with Walgreens and obtain the API key and Affiliate ID, developers must: create a user account on the Walgreens Developer Portal ( sign into the Walgreens Developer Portal ( select the Set Up an Application button (in the My Page tab) and fill out the form (to request an API key) Once the application has been approved by Walgreens, an automated will be generated and sent to the requester with a link to view the requester's unique API key. The automated will also include a generic test Affiliate ID, extest1. The requester's unique Affiliate ID will be provided to the developer once the requester's application is ready to commence onboard testing with the Walgreens Developer Program team. Registering with Commission Junction Walgreens has partnered with Commission Junction to handle revenue sharing. In order to earn a revenue share commission from photo orders submitted to and sold by Walgreens, a Publisher ID (PID) is required. To obtain a unique Publisher ID: go to click on the Apply link at the top of the page fill out and submit the application form log back in to the portal, once the application has been approved o An automated will be generated and sent to the requester review and accept the Walgreens Photo-Finishing Services Agreement proceed into the "Account" section of the Account Profile to obtain your Website ID (PID) number 2

3 How to use the Quick Prints SDK 1. Add the following files to the project s references Walgreens.QuickPrints.SDK.Windows8.dll 2. Add in references to the QuickPrints SDK using Walgreens.QuickPrints.SDK.Windows8; using Walgreens.QuickPrints.SDK.Windows8.Common.Util; 3. Create an instance of WagCheckoutContext IWalgreensCheckout wagcheckoutcontext = WagCheckoutContext.CreateInstanse(); Note: WagCheckoutContext is the class that provides access to all the key functions in this SDK 4. Initialize WagCheckoutContext using: InitAsync(string affiliateid, string apikey, EnvironmentType environment, string appver, CustomerInfo customerinfo, string publisherid, string prodgroupid) o InitAsync() can return a string If nothing is returned, then initialization has succeeded If a non-empty string is returned, then initialization has failed o AffiliateId, ApiKey and EnvironmentType are mandatory parameters. o customerinfo can be set to null and it is a optional parameter, but passing this information will lead to a better user experience when checking out o publisherid & prodgroupid are provided by Walgreens, but they both can be set to null o appver must be set to the application version o If initialization failed, then InitAsync() must be called again o environment should be set to either: EnvironmentType.Development for staging, or EnvironmentType.Production for production IWalgreensCheckout wagcheckoutcontext = WagCheckoutContext.CreateInstanse(); var cinfo = new CustomerInfo { FirstName= John, LastName= Doe, Phone= , = jdoe@walgreens.com ; string errorcode = await wagcheckoutcontext.initasync( Affiliate ID, API key, EnvironmentType.Development, App Version, cinfo, Publisher ID, ProdGroupId ); if(!string.isnullorempty(errorcode)) { 3

4 MessageBox.Show(errorCode); return; 5. Setup delegates to track the upload and remove statuses // For tracking upload status wagcheckoutcontext.getimageuploadedstatus += GetImageUploadStatus; private void GetImageUploadStatus(object sender, ImageUploadStatus e) { Debug.WriteLine("TotalImageCount - {0 -- Uploaded Images - {1", e.totalimagecount, e.uploadedimagecount); if (e.status == ResultStatus.Completed) { Debug.WriteLine("Process completed"); // For tracking remove status wagcheckoutcontext.getimageremovedstatus += GetImageRemoveStatus; private void GetImageRemoveStatus(object sender, ImageRemoveStatus e) { Debug.WriteLine("TotalImages - {0 -- Removed Images - {1", e.totalimagecount, e.removedimagecount); if (e.status == ResultStatus.Completed) { Debug.WriteLine("Process completed"); 6. The images to be printed must be: uploaded using WagCheckoutContext s UploadImages() method, and/or referenced using WagCheckoutContext s AddImageUrls()method, which will accept URLs of publicly available images Headers for UploadImages() and AddImageUrls(): void UploadImages(List<Picture> pictures); void AddImageUrls(List<string> imageurls); void UploadImage(Stream picture);//stream of picture, captured through phone camera Note: Publicly available image URLs must not require any type of login or authentication The maximum number of images that can be in a single order (regardless of image source) is 100 Images to be printed must be in JPG The images can be removed from the order list To remove local images, use WagCheckoutContext s RemoveImages(), and/or To remove referenced images, use WagCheckoutContext s RemoveImageUrls() To clear all images from the order, use WagCheckoutContext s ClearOrder() Once a landing page URL has been successfully obtained via PostOrderAsync(), the order will 4

5 be cleared automatically Headers for RemoveImages() and RemoveImageUrls() and ClearOrder(): void RemoveImages (List<Picture> pictures); void RemoveImageUrls(List<string> imageurls); void ClearOrder(); 7. (Optional) If needed, the image upload process can be cancelled WagCheckoutContext s CancelUploads() WagCheckoutContext.CancelUploads(); 8. (Optional) If needed, coupon code and/or Affilidate notes can be set by calling SetCouponCode() and SetAffiliateNotes(). But by passing this information will lead to a better user experience when checking out Example code snippet: wagcheckoutcontext.setcouponcode( string coupon ); wagcheckoutcontext.setaffiliatenotes( string AffiliateNotes ); 9. After images have been successfully uploaded and/or image URLs have been added, WagCheckoutContext can be used to: get the maximum size of the order via GetMaxOrderSize() get the list of images in the order via GetImageCount() get the SDK version via GetSdkVersion() // Get the maximum size of the order int maxordersize = WagCheckoutContext.GetMaxOrderSize(); // Get the number of images in the order int imgcount = WagCheckoutContext.GetImageCount(); // To get the version of the SDK string sdkversion = WagCheckoutContext.GetSdkVersion(); 1. After all images have been uploaded, use WagCheckoutContext s PostOrderAsync() to get the landing page URL, which can be loaded into a web container to proceed with the checkout flow. Note: PostOrderAsync() can accept an optional Location object as an input parameter. PostOrderAsync() will return an object with two string properties, CheckoutUrl and Error. If PostOrderAsync() is successful, then Error will be null and CheckoutUrl will have the URL to the landing page. If PostOrderAsync() is unsuccessful, then Error will be contain an error code. 5

6 IWalgreensCheckout wagcheckoutcontext = WagCheckoutContext.CreateInstanse(); var cinfo = new CustomerInfo { FirstName= John, LastName= Doe, Phone= , = jdoe@walgreens.com ; string errorcode = await wagcheckoutcontext.initasync( Affiliate ID, API key, EnvironmentType.Development, App Version, cinfo, Publisher ID, ProdGroupId ); if(!string.isnullorempty(errorcode)) { MessageBox.Show(errorCode); return; // (Optional, not recommended for photos) Disable image compression wagcheckoutcontext.disableimagecompression(bool disablecompression); // For tracking upload status // Note: an example for GetImageUploadStatus is listed in the next code snippet wagcheckoutcontext.getimageuploadedstatus += GetImageUploadStatus; // For tracking remove status // Note: an example for GetImageRemoveStatus is listed in the next code snippet wagcheckoutcontext.getimageremovedstatus += GetImageRemoveStatus; // Upload images // Note: imagestoupload is a List of Pictures wagcheckoutcontext.uploadimages(imagestoupload); // If coupon need to be passed while checkout, pass it as below wagcheckoutcontext.setcouponcode( string coupon ); // If additional notes need to be sent to Walgreens, include the notes with: wagcheckoutcontext.setaffiliatenotes(string affiliatenotes); //////////////////////////////// // Begin the checkout process // //////////////////////////////// // Get the checkout URL that will eventually be loaded in a web container var remotecart = await wagcheckoutcontext.postorderasync(new Location {Latitude = 1.1, Longitude = 8.1 ); if(!string.isnullorempty(remotecart.error) { // Show an error message based on the error code // Load the URL (in remotecart.checkouturl) in a WebBrowser control Example Code Snippet for Delegate Methods: private void GetImageUploadStatus(object sender, ImageUploadStatus e) { Debug.WriteLine("TotalImageCount - {0 -- Uplaoded Images - {1", e.totalimagecount, e.uploadedimagecount); 6

7 if (e.status == ResultStatus.Completed) { Debug.WriteLine("Process completed"); private void GetImageRemoveStatus(object sender, ImageRemoveStatus e) { Debug.WriteLine("TotalImageCount - {0 -- Removed Images - {1", e.totalimagecount, e.removedimagecount); if (e.status == ResultStatus.Completed) { Debug.WriteLine("Process completed"); Example Code Snippet for XAML for WebBrowser: <WebView x:name="webview"/> Example Code Snippets for Code-behind File (XAML.CS) for WebBrowser: //Allow the script notify for WebView from any Uri webview.allowedscriptnotifyuris = WebView.AnyScriptNotifyUri; // Add an event handler for the WebView control s ScriptNotify webview.scriptnotify += webview_scriptnotify; //this message hook needs to be done as html's alert is not supported in WebView void webview_scriptnotify(object sender, NotifyEventArgs e) { string message = e.value; switch (message) { case "checkout_ok_callback": //handle checkout ok callback break; case "checkout_exit_cancel": //handle checkout cancel callback break; case "checkout_exit_back": //handle checkout back callback break; default: //show any other alert message in native MessageDialog var msgdialog = new MessageDialog(message); msgdialog.showasync(); break; 7

8 Setting ScriptNotify hook to the web container: The following messages are called from the HTML5 code in the web container through Notify Script. checkout_ok_callback Call back after the checkout process is complete. checkout_exit_back Call back when the user selects the back button. checkout_exit_cancel Call back when the user cancels the checkout process. 8

9 SDK Related Error Codes & Error Handling Error Code Constant Name Description 901 ERR_CODE_JSON_EXCEPTION Invalid JSON format received from server. 902 ERR_CODE_SIGNATURE_EXCEPTION Error in encrypting API key. Invalid Signature. Please contact Walgreens. 903 ERR_CODE_EXCEED_UPLOAD_IMAGE_COUNT_LIMIT Maximum upload limit count reached. 904 ERR_CODE_ALREADY_INITIALIZED SDK is already initialized. 905 ERR_CODE_NOT_INITIALIZED SDK is not initialized. 906 ERR_INITIALIZATION Problem when initializing the SDK. 907 ERR_CODE_FILE_ALREADY_UPLOADED Image already uploaded to server. 908 ERR_CODE_UPLOAD_CANCELED Upload cancelled. 909 ERR_CODE_UPLOAD_FAILED Upload failed. 910 ERR_CODE_HTTP_CONNECTION Server unavailable. 911 ERR_CODE_EMPTY_CART No file in the cart. 912 ERR_CODE_INVALID_API_KEY Invalid API Key. 913 ERR_CODE_AFFILIATE_ID Invalid Affiliate ID. 914 ERR_CODE_INVALID_ENVIRONMENT Invalid environment argument while initializing SDK. 915 ERR_CODE_INVALID_SEVER_URL Invalid Server URL. 916 ERR_CODE_INVALID_IMAGE Invalid image file/no image available. 917 ERR_CODE_EMPTY_FILE Empty image file. 918 ERR_CODE_ILLEGAL_STATE Illegal SDK state. Upload is already in progress. 919 ERR_CODE_EXCEED_BATCH_IMAGE_COUNT Number of images in a batch exceeded the current limit of ERR_CODE_UNSUPPORTED_IMAGE_FORMAT Unsupported image format. 921 ERR_CODE_NO_FILES_TO_UPLOAD There is no file to upload. All images have been uploaded already. 922 ERR_CODE_START_UPLOAD_SERVICE Problem starting the background image upload service. 923 ERR_CODE_NULL_ANDROID_CONTEXT Android Context is null. It must be 9

10 valid android context. 924 ERR_CODE_NETWORK_UNAVAILABLE SDK unable to connect to the Internet/network due to a weak or unavailable signal. 925 ERR_CODE_INVALID_IMAGE_URL Invalid remote image URL. 926 ERR_CODE_GENERAL_EXCEPTION General Exception HTML5 Related Error Codes & Error Handling Error Code Constant Name 652 STORE_NOTAVAILABLE No stores found. 654 PRICE_PRODUCT_MISSING Product price is missing. 655 PRICE_EXCEPTION Exception in price. 656 COUPON_MISSING Coupon is missing. 657 COUPON_EXCEPTION Exception in coupon. 658 DEVICEINFO_MISSING Device info missed. Description 1000 COUPON_INVALID Coupon invalid. Please enter a valid coupon CART_EXPIRED Cart (Session) has expired. Please try again SERVICE_UNAVAILABLE The service is temporarily unavailable. Please try again later AFFILIATE_NOTEXIST Invalid affiliate INVALID_SIGNATURE Invalid signature NOT_AUTHORIZED Not authorized INVALID_QUANTITY Invalid quantity. Please enter a valid quantity INVALID_PRICE Invalid price. 10

Introduction. Typographical conventions. Prerequisites. QuickPrints SDK for Windows Phone 8 Version 1.0 November 20, 2013

Introduction. Typographical conventions. Prerequisites. QuickPrints SDK for Windows Phone 8 Version 1.0 November 20, 2013 Introduction The provides a set of APIs that can be used to submit a photo print order to a Walgreens store. This document gives step-by-step directions on how to integrate the QuickPrints SDK into a Windows

More information

QuickPrints SDK for ios Version 3.3 August 06, 2014

QuickPrints SDK for ios Version 3.3 August 06, 2014 Introduction The QuickPrints SDK for ios (ipod Touch, iphone, and ipad) is a static library that provides a set of APIs that can be used to submit a photo print order to a Walgreens store. This document

More information

Publisher Onboarding Kit

Publisher Onboarding Kit Publisher Onboarding Kit Smart content. Smart business. Publishing, Supporting & Selling HotDocs Market Templates A HotDocs Market publisher s guide for loading templates, answering customer questions

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

Administering Workspace ONE in VMware Identity Manager Services with AirWatch. VMware AirWatch 9.1.1

Administering Workspace ONE in VMware Identity Manager Services with AirWatch. VMware AirWatch 9.1.1 Administering Workspace ONE in VMware Identity Manager Services with AirWatch VMware AirWatch 9.1.1 You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/

More information

Printable Help. The complete text of the MLS Online Help

Printable Help. The complete text of the MLS Online Help Printable Help The complete text of the MLS Online Help Updated June 12, 2017 Table of Contents Table of Contents 2 Accessing the MLS 11 Access Edge MLS from a Mobile Device 11 Log On or Off the MLS 11

More information

Walgreens QuickPrints: 8.5 x 11 Wall Calendar Layout Guide

Walgreens QuickPrints: 8.5 x 11 Wall Calendar Layout Guide Walgreens QuickPrints: 8.5 x 11 Wall Calendar Layout Guide 2013 Walgreen Co. All Rights Reserved. Page 1 Introduction: With the Walgreens QuickPrints API & SDKs, developers can enable their applications

More information

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM

STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM STEPS FOR CANDIDATE FOR SCHEDULING ITB EXAM 1. Candidates can start registering through the Register for an ITB Certification link on www.pearsonvue.com/itb or directly by clicking on Enrollment link of

More information

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Release version May- 03

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Release version May- 03 ICANN Pre- Delegation Testing System A User s Guide Release version 1.5 2013- May- 03 TABLE OF CONTENTS 1 Introduction... 2 2 Activate your account and log in... 3 3 Application overview and status...

More information

Admin Guide Verizon Auto Share Platform.

Admin Guide Verizon Auto Share Platform. Admin Guide Verizon Auto Share Platform. Verizon Auto Share Platform Admin Guide Contents Verizon Auto Share Platform Admin Guide...2 1.1 Initial Setup...4 2.1 Users and Roles...5 2.2 Manage Company Users...6

More information

MyFloridaNet-2 (MFN-2) Remote Access VPN Reference Guide

MyFloridaNet-2 (MFN-2) Remote Access VPN Reference Guide MyFloridaNet-2 (MFN-2) Remote Access VPN Reference Guide Document Control Number: 7055011 Contract Number: DMS-13/14-024 Prepared for: Florida Department of Management Services Division of Departmental

More information

Pearson s Comprehensive Talent Assessment Online Platform Standard Subscription

Pearson s Comprehensive Talent Assessment Online Platform Standard Subscription Pearson s Comprehensive Talent Assessment Online Platform Standard Subscription Version 1.5.1- July 2014 Table of Contents Introduction... 1 Getting started: Standard subscription features... 2 1. First

More information

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

RISKMAN QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction This reference guide is aimed at RiskMan Administrators who will be responsible for maintaining your RiskMan system configuration and also to use some of the System Tools that are available

More information

Regional Growth Fund Initial Application Form Snapshots from GMS Portal

Regional Growth Fund Initial Application Form Snapshots from GMS Portal Regional Growth Fund Initial Application Form Snapshots from GMS Portal Contents GMS Portal landing page... 3 Registering / Logging In... 5 Resetting your password... 9 Manage Your Organisation and User

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

Software Integration Guide

Software Integration Guide Software Integration Guide Topaz SigPlusExtLite SDK Designed for use in Chrome, Firefox, Opera, and Edge Browser Extension Frameworks Version 1.0 R1013 Last Update: January 3, 2018 Copyright 2018 Topaz

More information

Webshop Plus! v Pablo Software Solutions DB Technosystems

Webshop Plus! v Pablo Software Solutions DB Technosystems Webshop Plus! v.2.0 2009 Pablo Software Solutions http://www.wysiwygwebbuilder.com 2009 DB Technosystems http://www.dbtechnosystems.com Webshos Plus! V.2. is an evolution of the original webshop script

More information

Getting started with the ISIS Community Portal-

Getting started with the ISIS Community Portal- Getting started with the ISIS Community Portal- Creating an ISIS account- 1. In your web browser navigate to the ISIS portal site- http://www.isis.org and click Register in the upper right corner. If you

More information

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode

Overview NOTE: Listing Overview. User Profile. Language Selection. Asset(s) View. Asset(s) Details. Editing Mode Overview Listing Overview User Profile Language Selection Asset(s) View Asset(s) Details Editing Mode NOTE: Some functions may not be available to all users depending on permissions granted. Some of the

More information

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook

BLACKBERRY SPARK COMMUNICATIONS PLATFORM. Getting Started Workbook 1 BLACKBERRY SPARK COMMUNICATIONS PLATFORM Getting Started Workbook 2 2018 BlackBerry. All rights reserved. BlackBerry and related trademarks, names and logos are the property of BlackBerry

More information

Workspace ios Content Locker. UBC Workspace 2.0: VMware Content Locker v4.12 for ios. User Guide

Workspace ios Content Locker. UBC Workspace 2.0: VMware Content Locker v4.12 for ios. User Guide UBC Workspace 2.0: VMware Content Locker v4.12 for ios User Guide Navigating Content Locker Content Locker centralizes all your enterprise data in a single container and integrates existing content repositories

More information

Complete On-Demand Clone Documentation

Complete On-Demand Clone Documentation Complete On-Demand Clone Documentation Table of Contents 1. How Complete On-Demand Clone works...4 2. Primary Pages of App...8 A. App...8 B. Auth....10 C. Sell...11 D. Business...12 E. Driver...12 F. Admin/Dashboard...13

More information

Business Chat Onboarding Your Business Chat Accounts. September

Business Chat Onboarding Your Business Chat Accounts. September Onboarding Your Accounts September 2018.1 Contents Overview 3 Create a Brand Profile... 4 Configure the Messages Header... 4 Create a Account... 4 Connecting to Your Customer Service Platform... 5 Connect

More information

Getting Started Guide. Prepared by-fatbit Technologies

Getting Started Guide. Prepared by-fatbit Technologies Getting Started Guide Prepared by-fatbit Technologies 1 Contents 1. Manage Settings... 3 1.1. General... 4 1.2. Local... 6 1.3. SEO... 7 1.4. Option... 8 1.5. Live Chat... 19 1.6. Third Part API s... 20

More information

Automatically Remediating Messages in Office 365 Mailboxes

Automatically Remediating Messages in Office 365 Mailboxes Automatically Remediating Messages in Office 365 Mailboxes This chapter contains the following sections: Performing Remedial Actions on Messages Delivered to End Users When the Threat Verdict Changes to

More information

SigCaptureWeb SDK Guide

SigCaptureWeb SDK Guide Version 1.0.0.5 Copyright 2018 epadlink 1 Table of Contents 1.0 Introduction... 3 2.0 Overview and Architecture... 3 2.1 epadlink SigCaptureWeb SDK... 4 2.2 Chrome Extension/Webpage... 4 2.3 Firefox Extension/Webpage...

More information

SAAdobeAIRSDK Documentation

SAAdobeAIRSDK Documentation SAAdobeAIRSDK Documentation Release 3.1.6 Gabriel Coman April 12, 2016 Contents 1 Getting started 3 1.1 Creating Apps.............................................. 3 1.2 Adding Placements............................................

More information

Just Listed/Just Sold FAQ

Just Listed/Just Sold FAQ Just Listed/Just Sold FAQ General... 3 Where is my Agent Profile Information?... 3 What is the Just Listed/Just Sold Postcard service?... 3 How do I sign up for this service?... 3 Who will receive the

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

Murphy s Magic Download API

Murphy s Magic Download API Murphy s Magic Download API Last updated: 3rd January 2014 Introduction By fully integrating your website with the Murphy s Magic Download System, you can give the impression that the downloads are fully

More information

Create and Manage Partner Portals

Create and Manage Partner Portals Create and Manage Partner Portals Salesforce, Summer 18 @salesforcedocs Last updated: June 20, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark of

More information

B2B Portal User Guide

B2B Portal User Guide B2B Portal User Guide Table of Contents Introduction..3 Logging In.4 Changing your original password......6 Ordering Product....7 Product Waiting Lists......8 Payment Options.. 14 Finalizing your Order...

More information

Intel Unite Solution Version 4.0

Intel Unite Solution Version 4.0 Intel Unite Solution Version 4.0 System Broadcast Application Guide Revision 1.0 October 2018 October 2018 Dcoument # XXXX Legal Disclaimers and Copyrights This document contains information on products,

More information

Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18

Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18 Masterpass Service Provider Onboarding and Integration Guide Merchant by Merchant Model U.S. Version 6.18 30 September 2016 SPMM Summary of Changes, 30 September 2016 Summary of Changes, 30 September 2016

More information

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Version

TABLE OF CONTENTS. ICANN Pre- Delegation Testing System. A User s Guide. Version ICANN Pre- Delegation Testing System A User s Guide Version 2.2 2014-01- 17 TABLE OF CONTENTS 1 Introduction... 2 2 Activate your account and log in... 3 3 Application overview and status... 5 3.1 Applications

More information

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10

Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Cloud Service Administrator's Guide 15 R2 March 2016 Contents Using the Primavera Cloud Service Administrator's Guide... 9 Web Browser Setup Tasks... 10 Configuring Settings for Microsoft Internet Explorer...

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements Last Modified: January 5, 2018 The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction

More information

Sage Mobile Payments User's Guide

Sage Mobile Payments User's Guide Sage Mobile Payments User's Guide Last Modified: 8/4/2014 Contents 1 Activating Sage Mobile Payments 2 Using the System 2 Login 2 Multi user Login 2 First-time Login 3 Default Settings 3 Retrieving Your

More information

Citrix Ready Marketplace FAQs

Citrix Ready Marketplace FAQs Citrix Ready Marketplace FAQs 1. What are the required specifications to submit the company and product logo files? A. The recommended specification for the company logo is 285x270 pixels and JPG, JPEG

More information

Design Conductor Training Document

Design Conductor Training Document Design Conductor Training Document Design Conductor is a web based template library for all of your printed materials like brochures, newsletters, post cards and more. Authorized staff members will be

More information

Website Management with the CMS

Website Management with the CMS Website Management with the CMS In Class Step-by-Step Guidebook Updated 12/22/2010 Quick Reference Links CMS Login http://staging.montgomerycollege.edu/cmslogin.aspx Sample Department Site URLs (staging

More information

Integration Guide epadlink SigCaptureWeb SDK

Integration Guide epadlink SigCaptureWeb SDK Integration Guide epadlink SigCaptureWeb SDK Version 1.1 October 12, 2017 Copyright 2017 epadlink. All rights reserved. www.epadlink.com Table of Contents 1.0 Introduction... 3 2.0 Overview and Architecture...

More information

ZALO APPLICATION DEVELOPERS version 3.7.3

ZALO APPLICATION DEVELOPERS version 3.7.3 ZALO APPLICATION DEVELOPERS version 3.7.3 9/9/2014 VNG Corporation Tran Ngoc Huy Compatible with SDK version 3.7 Table of Contents 1. Introduction... 3 1.1 Overview... 3 1.2 Definitions, Acronyms and Abbreviations...

More information

Deploying VMware Workspace ONE Intelligent Hub. October 2018 VMware Workspace ONE

Deploying VMware Workspace ONE Intelligent Hub. October 2018 VMware Workspace ONE Deploying VMware Workspace ONE Intelligent Hub October 2018 VMware Workspace ONE You can find the most up-to-date technical documentation on the VMware website at: https://docs.vmware.com/ If you have

More information

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0)

All Rights Reserved, Copyright FUJITSU LIMITED IoT Platform Service Portal Operating Manual (Version 5_0.0) 1 IoT Platform Service Portal Operating Manual (Version 5_0.0) Version No. Description Date Version 1.0 First version 2016/10/07 Version 1.1 Error corrections and supporting launch of

More information

Schneider Electric License Manager

Schneider Electric License Manager Schneider Electric License Manager EIO0000001070 11/2012 Schneider Electric License Manager User Manual 12/2012 EIO0000001070.01 www.schneider-electric.com The information provided in this documentation

More information

JOB AID FOR SPEARMART REQUESTERS

JOB AID FOR SPEARMART REQUESTERS JOB AID FOR SPEARMART REQUESTERS THIS JOB AID IS FOR THOSE INDIVIDUALS THAT HAVE THE FSU_PO_REQUESTER ROLE IN OMNI ONLY. THIS ROLE ALLOWS YOU TO CREATE REQUISITIONS IN THE OMNI FINANCIAL SYSTEM TO OBTAIN

More information

Money Management Account

Money Management Account Money Management Account Overview Red represents debt accounts. Add An Account lets you add any account you want including loans, property, credit cards and investments. Click an account to edit it. Note:

More information

14FC Works Geotagging Mobile app Telangana Guidelines

14FC Works Geotagging Mobile app Telangana Guidelines 14FC Works Geotagging Mobile app Telangana Guidelines DOWNLOAD Directions: Go to CDMA portal www.cdma.telangana.gov.in and go to section 14FC Geo Tagging app Download. You will be redirected to below screen

More information

Mobile Application Development

Mobile Application Development Android Native Application Development Mobile Application Development 1. Android Framework and Android Studio b. Android Software Layers c. Android Libraries d. Components of an Android Application e.

More information

Product Labels User Guide

Product Labels User Guide 2 Contents Introduction... 3 Add-on Installation... 4 Automatic Labels... 5 Manage Auto Labels... 5 Edit Auto Labels Appearance... 6 Generate auto label manually... 6 Upload file for auto label... 9 Custom

More information

Using McKesson Specialty Care Solutions US Oncology Order Center

Using McKesson Specialty Care Solutions US Oncology Order Center Using Specialty Care Solutions US Oncology Order The, mscs.mckesson.com, is an online destination that provides easy access to everything you need to manage your purchasing relationship with Specialty

More information

How to start as registered user? How to edit a content? How to upload a document (file)?... 8

How to start as registered user? How to edit a content? How to upload a document (file)?... 8 Platform Tutorial This document provides HydroEurope participants with the basic procedures to use the platform and to update the different pages of the website with text and documents. How to start as

More information

TKL Mobile User Guide v1.0 Cisco Public. Cisco Technical Knowledge Library Mobile User Guide v1.0

TKL Mobile User Guide v1.0 Cisco Public. Cisco Technical Knowledge Library Mobile User Guide v1.0 Cisco Technical Knowledge Library Mobile User Guide v1.0 July 2017 Contents Introduction... 2 Splash Screen... 3 Login Screen... 3 Login Error Message... 4 Loading Screen... 4 Home Screen... 5 Library...

More information

K5 Portal User Guide

K5 Portal User Guide FUJITSU Cloud Service K5 K5 Portal User Guide Version 2.6 FUJITSU LIMITED Preface Purpose of This Document This guide describes the operating procedures for the services provided by FUJITSU Cloud Service

More information

VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS

VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS Introduction VHIMS QUICK REFERENCE GUIDE TO SYSTEM CONFIGURATION & TOOLS This reference guide is aimed at VHIMS Administrators who will be responsible for maintaining your VHIMS system configuration and

More information

COUPONPAQ ADMIN USER GUIDE

COUPONPAQ ADMIN USER GUIDE COUPONPAQ ADMIN USER GUIDE -2- Overview THANK YOU FOR CHOOSING COUPONPAQ SOFTWARE COUPONPAQ platform is the No 1 feature packed coupon distribution software on the market. It creates an effective incentive

More information

Load Balancing VMware Workspace Portal/Identity Manager

Load Balancing VMware Workspace Portal/Identity Manager Load Balancing VMware Workspace Portal/Identity Manager Overview VMware Workspace Portal/Identity Manager combines applications and desktops in a single, aggregated workspace. Employees can then access

More information

X-AFFILIATE module for X-Cart 4.0.x

X-AFFILIATE module for X-Cart 4.0.x X-AFFILIATE module for X-Cart 4.0.x Partner Interface Reference Manual Revision Date: 2004-11-22 Copyright 2001-2004 Ruslan R. Fazliev. All rights reserved. TABLE OF CONTENTS GENERAL INFORMATION...3 REGISTRATION...4

More information

Google Authenticator Guide. SurePassID Authentication Server 2017

Google Authenticator Guide. SurePassID Authentication Server 2017 Google Authenticator Guide SurePassID Authentication Server 2017 Introduction This technical guide describes how to use the Google Authenticator app to generate One-Time Passwords (OTP) that are compatible

More information

Basware - Verian Mobile App Guide Basware P2P 18.2

Basware - Verian Mobile App Guide Basware P2P 18.2 Basware - Verian Mobile App Guide Basware P2P 18.2 Copyright 1999-2018 Basware Corporation. All rights reserved.. 1 Introduction The mobile app is a streamlined tool that allows you to take pictures of

More information

econtracts for Tier1 partners COURSE CODE: COE01

econtracts for Tier1 partners COURSE CODE: COE01 econtracts for Tier1 partners COURSE CODE: COE01 April 2017 Introduction Welcome to the econtracts for Partners course. This course provides a brief overview of what the Zebra econtracts Portal is used

More information

1. Overview Account Configuration Details... 3

1. Overview Account Configuration Details... 3 WhatsApp Enterprise API - Technical Guide V4.4 July 2018 Index 1. Overview... 3 2. Account Configuration Details... 3 2.1 Provisioning of a Demo API... 3 2.2 Activation of Production API... 3 2.3 Setting

More information

User Guide Mobile Point-of-Sale (mpos), Version 2.0

User Guide Mobile Point-of-Sale (mpos), Version 2.0 User Guide Mobile Point-of-Sale (mpos), Version 2.0 Contents Overview... 1 Features... 1 Getting Started... 2 Login... 3 First Time Login/Password Reset... 3 Setting Security Questions... 4 Password Expiring...

More information

INSTALLATION GUIDE Spring 2017

INSTALLATION GUIDE Spring 2017 INSTALLATION GUIDE Spring 2017 Copyright and Disclaimer This document, as well as the software described in it, is furnished under license of the Instant Technologies Software Evaluation Agreement and

More information

Oracle Real-Time Scheduler

Oracle Real-Time Scheduler Oracle Real-Time Scheduler Mobile Application User s Guide (HTML5-based) Release 2.2.0.3 E64164-01 May 2015 (HTML5-based), Release 2.2.0.3 Copyright 2000, 2015 Oracle and/or its affiliates. All rights

More information

OnBoarding with CalyxPod. Step 1 : Activate your Profile

OnBoarding with CalyxPod. Step 1 : Activate your Profile OnBoarding with CalyxPod CalyxPod is a platform which helps students to understand about the placement events taking place in their respective colleges for both On Campus as well as Off Campus events wherein

More information

Set Your ebay Token. 1. Log into your Vendio Account and select the Preferences link on the right. 2. Choose the Preferences page for Channels.

Set Your ebay Token. 1. Log into your Vendio Account and select the Preferences link on the right. 2. Choose the Preferences page for Channels. Vendio welcomes all our new members coming from Auctiva. We ve created this step-by-step quick start guide for sellers coming from Auctiva to help you get started quickly and efficiently on the Vendio

More information

Accessing the SIM PCMH Dashboard

Accessing the SIM PCMH Dashboard Accessing the SIM PCMH Dashboard Setting up Duo, Creating Your Level-2 Password, and Setting up Citrix Receiver to Log in to the Dashboard P R O C EDURAL GUID E Document File Name Accessing_the_SIM_Dashboard.docx

More information

1. How to request an assessment for 1ClickFactory Upgrade for NAV and 365 Business Central

1. How to request an assessment for 1ClickFactory Upgrade for NAV and 365 Business Central Provide key information to request an upgrade analysis Expect an invitation to analyze within 5 business days In Upgrade Analyzer, choose an upgrade option to configure the upgrade components Within a

More information

Fuji Xerox is not responsible for any breakdown of machines due to infection by computer virus or computer hacking.

Fuji Xerox is not responsible for any breakdown of machines due to infection by computer virus or computer hacking. Administrator Guide Google and Android are either registered trademarks or trademarks of Google Inc. Microsoft, Windows, and Excel are either registered trademarks or trademarks of Microsoft Corporation

More information

Taxpayer Enhancements:

Taxpayer Enhancements: Taxpayer Enhancements: 1. Authentication for Business Returns and K-1 Distribution: To enhance security for business returns and K-1 distribution, we have removed the need for the recipients to enter the

More information

Mambu Mobile Overview v5.0

Mambu Mobile Overview v5.0 Mambu Mobile Overview v5.0 1 of 44 Versi on # Change History Date Description Summary of Changes 1,0 June 2014 Initial Release 2,0 November 2014 Updated with changes for Mambu Mobile v2.4 2,5 February

More information

Family Map Server Specification

Family Map Server Specification Family Map Server Specification Acknowledgements The Family Map project was created by Jordan Wild. Thanks to Jordan for this significant contribution. Family Map Introduction Family Map is an application

More information

Authentication Provider - Facebook. Setup Guide

Authentication Provider - Facebook. Setup Guide Authentication Provider - Facebook Setup Guide Disclaimer THIS DOCUMENTATION AND ALL INFORMATION CONTAINED HEREIN ( MATERIAL ) IS PROVIDED FOR GENERAL INFORMATION PURPOSES ONLY. GLOBAL REACH AND ITS LICENSORS

More information

LiveText via Group Member User Guide

LiveText via Group Member User Guide March 2017 LiveText via Group Member User Guide Who is this Guide for?... 4 Accessing Via... 4 In Progress Tab... 4 Group Details Page... 4 The Homepage Tab... 5 Activities... 5 The Activity Tab... 5 To

More information

Perceptive Nolij Web. Release Notes. Version: 6.8.x

Perceptive Nolij Web. Release Notes. Version: 6.8.x Perceptive Nolij Web Release Notes Version: 6.8.x Written by: Product Knowledge, R&D Date: June 2018 Copyright 2014-2018 Hyland Software, Inc. and its affiliates. Table of Contents Perceptive Nolij Web

More information

CMS Client User Guide GSK Germany Version 3 (28/04/2014) Contents Page No Raising a Standard and Non-Standard Order Client Portal Login 3 New Client Registration 3 Client Portal Login 4 Webstore Login

More information

Mobile Application User Guide

Mobile Application User Guide Mobile Application User Guide M+A Mobile App User Guide P age2 Introduction The M+A Matting mobile app provides an easy way for users to search and view existing mat designs as well as create their own

More information

Building Facebook Application using Python

Building Facebook Application using Python Building Facebook Application using Python ECS-15, Fall 2010 Prantik Bhattacharyya Facebook Applications Farmville Game 57.5m users http://www.facebook.com/farmville Causes Issues/Movement 26.4m users

More information

Adobe Sign for MS Dynamics 365 CRM

Adobe Sign for MS Dynamics 365 CRM Adobe Sign for MS Dynamics 365 CRM User Guide v7 Last Updated: May 31, 2018 2018 Adobe Systems Incorporated. All rights reserved Contents Overview... 3 Gaining Access to Adobe Sign...4 Sending for Signature...

More information

Oracle Real-Time Scheduler

Oracle Real-Time Scheduler Oracle Real-Time Scheduler Mobile Application User s Guide Release 2.2.0 Service Pack 1 E50665-03 September 2014 , Release 2.2.0 Service Pack 1 Copyright 2000, 2014 Oracle and/or its affiliates. All rights

More information

Technical support:

Technical support: Technical support: support@tractiononline.com 1-866-868-4625 1 TRACTIONONLINE.COM offers different features. This guide is divided into 2 sections. SECTION 1: Your first order Place a quick order in your

More information

Shopitem API A technical guide to the REST API for managing updates of shopitems

Shopitem API A technical guide to the REST API for managing updates of shopitems Shopitem API A technical guide to the REST API for managing updates of shopitems Date: 07-12-2018 Version: 3.4 1 Index Introduction and background... 3 1. How to get access to the API and its online docs...

More information

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

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

More information

Why attend a Lianja training course? Course overview. Course Details

Why attend a Lianja training course? Course overview. Course Details These courses will be arranged periodically in different geographic regions or can be arranged on-site at customer premises by customer request. They can also be customized for individual customers needs

More information

Pax8 Training Guide for Partners

Pax8 Training Guide for Partners Training Quick Reference Guide O365 Ordering Process Document Date: May 16, 2017 V2.1 Pax8 Training Guide for Partners Contents 1 Office 365 Ordering Overview... 1-1 2 Create Microsoft Account (Step 1)...

More information

Laredo v8.0 Release Notes

Laredo v8.0 Release Notes Laredo v8.0 Release Notes The latest version of Laredo consists of the following 4 applications: 1. Laredo Desktop 2. Laredo Admin 3. Iris 4. Laredo Anywhere The following document will describe each of

More information

TABLE OF CONTENTS ACCOUNT REGISTRATION

TABLE OF CONTENTS ACCOUNT REGISTRATION STUDENT USER GUIDE TABLE OF CONTENTS ACCOUNT REGISTRATION... 3-4 LOGGING INTO YOUR ACCOUNT 5 MY DASHBOARD......6 CURRENT ACTIVITIES.....7 TRAINING HISTORY..8-9 CALENDAR.. 10 LEARNING PLAN...11 DESIGNATIONS..

More information

Request transcripts on behalf of students

Request transcripts on behalf of students 31 Request transcripts on behalf of students You can request transcripts on behalf of students who have expressed an interest in your institution. You can: Request transcripts for new or existing students.

More information

Lionbridge App for Oracle Eloqua. Setup Guide

Lionbridge App for Oracle Eloqua. Setup Guide Lionbridge App for Oracle Eloqua Setup Guide Version 1.5.8 May 2, 2018 Copyright Copyright 2018 Lionbridge Technologies, Inc. All rights reserved. Lionbridge and the Lionbridge logotype are registered

More information

EMARSYS FOR MAGENTO 2

EMARSYS FOR MAGENTO 2 EMARSYS FOR MAGENTO 2 Integration Manual July 2017 Important Note: This PDF was uploaded in July, 2017 and will not be maintained. For the latest version of this manual, please visit our online help portal:

More information

Quick Reference Approver

Quick Reference Approver The Commercial Card Expense Reporting (CCER) service Quick Reference Approver Accessing the Commercial Card Expense Reporting (CCER) service 1. Sign on to the Commercial Electronic Office (CEO ) portal

More information

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide

Adobe Document Cloud esign Services. for Salesforce Version 17 Installation and Customization Guide Adobe Document Cloud esign Services for Salesforce Version 17 Installation and Customization Guide 2015 Adobe Systems Incorporated. All rights reserved. Last Updated: August 28, 2015 Table of Contents

More information

End-User Reference Guide Troy University OU Campus Version 10

End-User Reference Guide Troy University OU Campus Version 10 End-User Reference Guide Troy University OU Campus Version 10 omniupdate.com Table of Contents Table of Contents... 2 Introduction... 3 Logging In... 4 Navigating in OU Campus... 6 Dashboard... 6 Content...

More information

vfire Officer App User Guide Version 1.3

vfire Officer App User Guide Version 1.3 vfire Officer App User Guide TOC Version Details 4 Online Support 4 Copyright 4 About this Document 6 Intended Audience 6 Standards and Conventions 6 About the vfire Officer App 7 Installing the vfire

More information

How to apply for the e-tip using the ZIMRA e-tip Portal. 1. Sign Up on a Mobile app. Select the e-tip app on your phone

How to apply for the e-tip using the ZIMRA e-tip Portal. 1. Sign Up on a Mobile app. Select the e-tip app on your phone How to apply for the e-tip using the ZIMRA e-tip Portal 1. Sign Up on a Mobile app Select the e-tip app on your phone Select Sign Up if you don t have an account Capture your Sign Up details Select SUBMIT

More information

How-To Configure Mailbox Auto Remediation for Office 365 on Cisco Security

How-To Configure Mailbox Auto Remediation for Office 365 on Cisco  Security How-To Configure Mailbox Auto Remediation for Office 365 on Cisco Email Security Beginning with AsyncOS 10.0 1 2017 2017 Cisco Cisco and/or and/or its affiliates. its affiliates. All rights All rights

More information

PassBy[ME] API Documentation

PassBy[ME] API Documentation PassBy[ME] API Documentation Document id: PBM_01 Document Version: 1.1.12 Author: Microsec Ltd. Date: 2015.09.13. API Version 1 1 Table of contents 1 Introduction... 4 2 Terms... 5 3 PassBy[ME] message

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