Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4

Size: px
Start display at page:

Download "Table of Contents. 1 Introduction Connecting to the API HTTP request syntax API release versions... 4"

Transcription

1 API Guide

2 Table f Cntents 1 Intrductin Cnnecting t the API HTTP request syntax API release versins Direct Answer API Required parameters Optinal parameters Perfrmance Direct Answer API hell wrld HTTP request XML respnse The XML explained Query API Required parameters Optinal parameters Query API hell wrld HTTP request XML respnse The XML explained Crediting True Knwledge... 12

3 1 Intrductin The True Knwledge API enables develpers t utilize True Knwledge s functinality in third party applicatins. True Knwledge prvides the fllwing API services: the Direct Answer API and the Query API. The Direct Answer API expses the natural language questin answering feature f True Knwledge while the Query API allws users t bypass ur natural language translatin system and directly query the knwledge base using a simple query language. API services are cmprised f HTTP requests and XML respnses. 3

4 2 Cnnecting t the API This chapter details the syntax f the HTTP requests that are used t cmmunicate with the True Knwledge API. 2.1 HTTP request syntax The True Knwledge API is queried using HTTP GET requests. The syntax f these requests is: <hst> The IP address (r name) f the machine that hsts the service. <service name> This is the name f the service. Fr example direct_answer r query. <parameters> One r mre f the HTTP request parameters. Nte that individual parameters must be URL-encded and separated with ampersands. Fr example: nd+actrs&api_accunt_id=[api_username]&api_passwrd=[passwrd] 2.2 API release versins In the future we may release new versins f ur API; we will always strive t make new versins backwards cmpatible with previus releases but in rder t prvide the ptin t ur API users there is the fllwing methd f specifying which API versin yu want t use. If yu wuld like t use the mst recent stable versin then this is the syntax t use: If n versin is specified then stable is the default ptin, s the abve URL is the same as: If yu want t use the latest (but nt necessarily stable) versin f the API this is the syntax t use: If yu want t use a specific versin f the API this is the syntax t use: > 4

5 3 Direct Answer API The Direct Answer API enables develpers t utilize True Knwledge s natural language questin answering technlgy in their wn applicatins. 3.1 Required parameters api_accunt_id=[api_username] passwrd=[passwrd] questin=[url encded questin string] This is where yu specify yur questin. Which shuld be URL encded, e.g. What%27s+the+time+in+Chicag%3F is what yu wuld set fr the questin What s the time in Chicag? 3.2 Optinal parameters timeut_ms=<millisecnds> If a respnse hasn t been returned within the number f millisecnds specified then the request will be halted and a timeut message returned. structured_respnse=[1 0] (1 by default) If this is set t 0 nly the text_result and status fields will be returned regardless f what parameters are set. questin_entities=[1 0] (1 by default) If we can identify an entity f interest in the questin then we ll return that in additin t the answer. E.g. the questin Wh wrte the Da Vinci Cde? will return [the da vinci cde] as well as the answer [dan brwn]. retranslate=[1 0] (0 by default) This will utput True Knwledge s interpretatin f what was asked and return it within the <tk:retranslatin> tag. bject_metadata=wikipedia,fficial,image64,image128,image1 50,imageprfile (wikipedia, fficial and image150 set by default) This parameter gives the ptin f including useful metadata with yur answer. wikipedia This will include the URL f the wikipedia page related t each result (if we knw f ne). fficial This will include the URL f the fficial website f each result (if we knw f ne), e.g. if the questin is Wh wrte the Da Vinci Cde? then the respnse will include the URL: assciated with the [dan brwn] entity. 5

6 image64 Returns a thumbnail image assciated with each result (if we have ne) that is cnstrained t a bunding bx f 64x64 pixels. image128 Returns a thumbnail image assciated with each result (if we have ne) that is cnstrained t a bunding bx f 128x128 pixels. image150 Returns a thumbnail image assciated with each result (if we have ne) that is cnstrained t a bunding bx f 150x150 pixels. imageprfile Returns an image assciated with each result (if we have ne) that is cnstrained t a bunding bx f 225 pixels wide x 600 pixels high. 3.3 Perfrmance Fr maximum perfrmance set structured_respnse t 0, this will nly return the <tk:status> and <tk:text_result> fields. If yu want yur answer s entities but nt yur questin s entities then set questin_entities t 0. The fewer parameters yu set the quicker yu will receive yur respnse. Fr example, setting bject_metadata t return the URL f every image size available will take slightly lnger than just returning ne image URL. 3.4 Direct Answer API hell wrld The Direct Answer API hell wrld is sending a request fr the time in Chicag and getting Chicag s current lcal time back alng with a link t the Wikipedia page fr Chicag and a thumbnail pht f the Chicag skyline HTTP request questin=what's+the+time+in+chicag &bject_metadata=image128,wikipedia &api_accunt_id=[username] &api_passwrd=[passwrd] 6

7 3.4.2 XML respnse <?xml versin="1.0" encding="utf-8"?> <tk:respnse xmlns:tk= xmlns=" understd="true" answered="true" type="direct_answer"> <tk:status>cmpleteness unknwn</tk:status> <tk:text_result>march 16th 2009, 10:57:30 CDT</tk:text_result> <tk:structured_result> <tk:result> <tk:bject> <tk:id>[lcal timepint: [timepint: ["2009/3/16/10/57/30"]]; [central daylight time]]</tk:id> </tk:bject> </tk:result> <tk:questin_entities> <tk:bject> <tk:id>[chicag]</tk:id> <tk:metadata parameter="image128"> wledge.cm/images/thumbs/128/128/ _2600x1500_chicag_lake_skyline.jpg< /tk:metadata> <tk:metadata parameter="wikipedia"> dia.rg/wiki/chicag</tk:metadata> </tk:bject> </tk:questin_entities> </tk:structured_result> <tk:tk_questin_url> 's_the_time_in_chicag</tk:tk_questin_url> </tk:respnse> The XML explained XML field <tk:respnse xmlns:tk=" xmlns=" l" understd="true" Descriptin This is the cntainer field fr the entire direct answer API respnse. There are tw attributes f interest in this XML tag and they are the understd and answered attributes. understd means we have understd the questin 7

8 answered="true" type="direct_answer"> <tk:status> <tk:text_result> <tk:structured_result> <tk:result> <tk:questin_entities> <tk:bject> <tk:id> <tk:metadata parameter="image128"> <tk:metadata parameter="wikipedia"> <tk:tk_questin_url> and answered means we have answered the questin. This returns either yes, n, cmplete r cmpleteness unknwn. Fr yes/n questins the respnse is self explanatry. If the questin is nt yes/n the status field will return cmplete if we knw that we have the cmplete answer (e.g. Wh is a child f President Mnre is status cmplete because we knw that we knw abut all f President Mnre s children), in mst cases hwever the respnse will be cmpleteness unknwn as the majrity f the time we dn t knw if we have a cmplete answer. This field cntains the main text answer t the questin. This is the cntainer field fr the structured results (images, links, etc). This field cntains the structured versin f the answer. This is the cntainer field fr questin entities (entities that appeared in the questin). This is a cntainer field fr each questin entity. This field cntains the True Knwledge ID f a questin entity. This field cntains the URL f a thumbnail image f a questin entity (in this case the thumbnail will have been scaled t fit in a 128x128 pixel bunding bx). This field cntains a questin entity s Wikipedia page URL. This is the permanent URL t the questin and answer page n trueknwledge.cm 8

9 4 Query API The Query API allws autmated systems t bypass ur natural language translatin system and directly query the knwledge base using a simple query language. Fr mre infrmatin n writing True Knwledge queries visit: Required parameters api_accunt_id=[api_username] passwrd=[passwrd] query_text=[url encded true knwledge query] e.g. query+result%0a%5b% %22%5d+%5bcan+den te%5d+number%0aresult+%5bis+the+gegraphical+area+f r+the+telephne+number%5d+number 4.2 Optinal parameters mde=[establish full] (establish by default) establish respnds with either yes r n/unknwn fr truth queries ( yes/n questins), whereas full respnds with either yes, n, r unknwn. Fr mst queries establish will be sufficient. translate_answers=[1 0] (0 by default) This will return the answer in a frm that is easy fr peple t read as well as the machine readable frmat. 4.3 Query API hell wrld The QUERY API hell wrld is sending a request fr the gegraphical lcatin that matches the telephne number and getting the respnse [the cambridge telephne cde area] HTTP request query=query+bj%0a%5b% %22%5d+%5bcan+dente%5 D+number%0Abj+%5Bis+the+gegraphical+area+fr+the+telephne+ number%5d+number &api_accunt_id=[username] &api_passwrd=[passwrd] 9

10 4.3.2 XML respnse <?xml versin="1.0" encding="utf-8"?> <tk:respnse xmlns:tk=" xmlns=" type="query"> <tk:status>cmpleteness unknwn</tk:status> <tk:num_results>3</tk:num_results> <tk:result> <tk:variable name="bj"> <tk:id>[the cambridge telephne cde area]</tk:id> </tk:variable> </tk:result> <tk:result> <tk:variable name="bj"> <tk:id>[cambridgeshire]</tk:id> </tk:variable> </tk:result> <tk:result> <tk:variable name="bj"> <tk:id>[the united kingdm and the channel islands]</tk:id> </tk:variable> </tk:result> </tk:respnse> The XML explained XML field <tk:respnse xmlns:tk=" xmlns=" l" type="query"> <tk:status> Descriptin tk:respnse is the cntainer field fr the entire query api respnse. This returns either yes, n, cmplete r cmpleteness unknwn. Fr yes/n questins the respnse is self explanatry. If the questin is nt yes/n the status field will return cmplete if we knw that we have the cmplete answer (e.g. query x x [is a child f] [president james mnre] is status cmplete because we knw that we knw abut all f President Mnre s children), in mst cases hwever the respnse will be 10

11 <tk:num_results> <tk:result> <tk:variable name="bj"> <tk:id> cmpleteness unknwn as the majrity f the time we dn t knw if we have a cmplete answer. The number f results in the respnse. The cntainer field fr each result. This is the variable name that was queried fr and cntains the result fr that variable. The True Knwledge ID f the entity. 11

12 5 Crediting True Knwledge With a free API accunt, users f ur API services must credit True Knwledge and place a prminent link back t ur site: With the direct answer service the questin URL returned in the tk_questin_url tag shuld be used. If yu wish t avid this requirement, please cntact us at partners@trueknwledge.cm If yu want yu can use this image as yur credit link: This image can be fund here: Fr example yur credit may lk like this when using the direct answer service: <a href= title= What is the capital f France ><img src= alt= Pwered by True Knwledge ></a> 12

13 2009 True Knwledge Ltd. All rights reserved. This manual, as well as the sftware described in it, is prvided under license and may be used r cpied nly in accrdance with the terms f such licence. The cntent f this manual is prvided fr infrmatinal use nly, is subject t change withut ntice, and shuld nt be cnstrued as a cmmitment by True Knwledge Limited. True Knwledge Limited assumes n respnsibility r liability fr any errrs r inaccuracies that may appear in this manual. Except as permitted by such licence, n part f this publicatin may be reprduced, stred in a retrieval system, r transmitted, in any frm r by any means, electrnic, mechanical, recrding, r therwise, withut the prir written permissin f True Knwledge Limited. 13

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015

USO RESTRITO. SNMP Agent. Functional Description and Specifications Version: 1.1 March 20, 2015 Functinal Descriptin and Specificatins Versin: 1.1 March 20, 2015 SNMP Agent Simple Netwrk Management Prtcl Optin S fr IE and PM Mdules Supplement t Functinal Descriptin and Specificatins f RUB Ethernet

More information

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide

Secure File Transfer Protocol (SFTP) Interface for Data Intake User Guide Secure File Transfer Prtcl (SFTP) Interface fr Data Intake User Guide Cntents Descriptin... 2 Steps fr firms new t batch submissin... 2 Acquiring necessary FINRA accunts... 2 SFTP Access t FINRA... 2 SFTP

More information

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS

OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SUBMISSIONS FOR FLORIDA: SYSTEM FUNCTIONS OASIS SYSTEM FUNCTIONS... 2 ESTABLISHING THE COMMUNICATION CONNECTION... 2 ACCESSING THE OASIS SYSTEM... 3 SUBMITTING OASIS DATA FILES... 5 OASIS INITIAL

More information

Stock Affiliate API workflow

Stock Affiliate API workflow Adbe Stck Stck Affiliate API wrkflw The purpse f this dcument is t illustrate the verall prcess and technical wrkflw fr Adbe Stck partners wh want t integrate the Adbe Stck Search API int their applicatins.

More information

Using UB Stream and UBlearns

Using UB Stream and UBlearns Using UB Stream and UBlearns Instructrs can nw uplad vides/audi r create a vide using their webcam in UBLearns. There is a new mashup tl (MEDIAL) that allws yu t uplad yur media files t UB s streaming

More information

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems

Date: October User guide. Integration through ONVIF driver. Partner Self-test. Prepared By: Devices & Integrations Team, Milestone Systems Date: Octber 2018 User guide Integratin thrugh ONVIF driver. Prepared By: Devices & Integratins Team, Milestne Systems 2 Welcme t the User Guide fr Online Test Tl The aim f this dcument is t prvide guidance

More information

PAGE NAMING STRATEGIES

PAGE NAMING STRATEGIES PAGE NAMING STRATEGIES Naming Yur Pages in SiteCatalyst May 14, 2007 Versin 1.1 CHAPTER 1 1 Page Naming The pagename variable is used t identify each page that will be tracked n the web site. If the pagename

More information

Requesting Service and Supplies

Requesting Service and Supplies HP MPS Service We welcme yu t HP Managed Print Services (MPS). Fllwing yu will find infrmatin regarding: HP MPS printer identificatin stickers Requesting service and supplies fr devices n cntract Tner

More information

Faculty Textbook Adoption Instructions

Faculty Textbook Adoption Instructions Faculty Textbk Adptin Instructins The Bkstre has partnered with MBS Direct t prvide textbks t ur students. This partnership ffers ur students and parents mre chices while saving them mney, including ptins

More information

Exosoft Backup Manager

Exosoft Backup Manager Exsft Backup Manager 2018 Exsft Backup Manager Ensuring databases are backed up regularly is a critical part f any cmpany data recvery prcess. Mst mnth end as well as end f financial year prcesses shuld

More information

SmartPass User Guide Page 1 of 50

SmartPass User Guide Page 1 of 50 SmartPass User Guide Table f Cntents Table f Cntents... 2 1. Intrductin... 3 2. Register t SmartPass... 4 2.1 Citizen/Resident registratin... 4 2.1.1 Prerequisites fr Citizen/Resident registratin... 4

More information

Information on using ChurchApp

Information on using ChurchApp Infrmatin n using ChurchApp 1. Intrductin What is ChurchApp? ChurchApp is an nline system which enables us t d many things at its mst simple level it serves as an nline address bk fr Emmanuel; we are als

More information

Adverse Action Letters

Adverse Action Letters Adverse Actin Letters Setup and Usage Instructins The FRS Adverse Actin Letter mdule was designed t prvide yu with a very elabrate and sphisticated slutin t help autmate and handle all f yur Adverse Actin

More information

PRIVACY AND E-COMMERCE POLICY STATEMENT

PRIVACY AND E-COMMERCE POLICY STATEMENT PRIVACY AND E-COMMERCE POLICY STATEMENT Tel-Tru Manufacturing Cmpany ( Tel-Tru ) is dedicated t develping lng-lasting relatinships that are built n trust. Tel-Tru is cmmitted t respecting the wishes f

More information

Introduction to Mindjet on-premise

Introduction to Mindjet on-premise Intrductin t Mindjet n-premise Mindjet Crpratin Tll Free: 877-Mindjet 1160 Battery Street East San Francisc CA 94111 USA Phne: 415-229-4200 Fax: 415-229-4201 www.mindjet.cm 2012 Mindjet. All Rights Reserved

More information

ClassFlow Administrator User Guide

ClassFlow Administrator User Guide ClassFlw Administratr User Guide ClassFlw User Engagement Team April 2017 www.classflw.cm 1 Cntents Overview... 3 User Management... 3 Manual Entry via the User Management Page... 4 Creating Individual

More information

Connect+/SendPro P Series Networking Technical Specification

Connect+/SendPro P Series Networking Technical Specification Shipping & Mailing Pstage Meters Cnnect+/SendPr P Series Netwrking Technical Specificatin Intrductin 2 Netwrk Requirements 2 Prt/Cmmunicatin Requirements 2 URL Infrmatin 3 FAQs 10 Service Cllateral SV62440

More information

TaskCentre v4.5 Save As File Tool White Paper

TaskCentre v4.5 Save As File Tool White Paper TaskCentre v4.5 Save As File Tl White Paper Dcument Number: PD500-03-20-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 FEATURES 2 TECHNICAL SUMMARY

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/3/2017 Cpyright Infrmatin Cpyright 2017 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0

CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 TECHNICAL DOCUMENTATION CROWNPEAK DESKTOP CONNECTION (CDC) INSTALLATION GUIDE VERSION 2.0 AUGUST 2012 2012 CrwnPeak Technlgy, Inc. All rights reserved. N part f this dcument may be reprduced r transmitted

More information

User Guide. Table Of Contents. Logging In. Job Search. Job Information. Site Search & Logging A Job. Customer Search. Job Dashboard.

User Guide. Table Of Contents. Logging In. Job Search. Job Information. Site Search & Logging A Job. Customer Search. Job Dashboard. User Guide Weblgic allws yu t access jb infrmatin via a web page. Giving yu real time updates, with the ptin t print reprts and infrmatin n/fr the jb. Table Of Cntents Lgging In Jb Search Jb Infrmatin

More information

TRAINING GUIDE. Overview of Lucity Spatial

TRAINING GUIDE. Overview of Lucity Spatial TRAINING GUIDE Overview f Lucity Spatial Overview f Lucity Spatial In this sessin, we ll cver the key cmpnents f Lucity Spatial. Table f Cntents Lucity Spatial... 2 Requirements... 2 Setup... 3 Assign

More information

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018

Release Notes Version: - v18.13 For ClickSoftware StreetSmart September 22, 2018 Release Ntes Versin: - v18.13 Fr ClickSftware StreetSmart September 22, 2018 Cpyright Ntice Cpyright 2018 ClickSftware Technlgies Ltd. All rights reserved. N part f this publicatin may be cpied withut

More information

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1

MyUni Adding Content. Date: 29 May 2014 TRIM Reference: D2013/ Version: 1 Adding Cntent MyUni... 2 Cntent Areas... 2 Curse Design... 2 Sample Curse Design... 2 Build cntent by creating a flder... 3 Build cntent by creating an item... 4 Cpy r mve cntent in MyUni... 5 Manage files

More information

These tasks can now be performed by a special program called FTP clients.

These tasks can now be performed by a special program called FTP clients. FTP Cmmander FAQ: Intrductin FTP (File Transfer Prtcl) was first used in Unix systems a lng time ag t cpy and mve shared files. With the develpment f the Internet, FTP became widely used t uplad and dwnlad

More information

1 Introduction Functions... 2

1 Introduction Functions... 2 Interface Descriptin API fr IPS Analytics Applicatins n the Axis ACAP Platfrm Cntents 1 Intrductin... 2 2 Functins... 2 3 Interfaces... 2 3.1 Cnfiguratin... 3 3.1.1 Interface C.1: Web cnfiguratr (IPS add-n)...

More information

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal

PAY EQUITY HEARINGS TRIBUNAL. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Pay Equity Hearings Tribunal PAY EQUITY HEARINGS TRIBUNAL Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Pay Equity Hearings Tribunal This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

SmartLink for Albridge Web Services

SmartLink for Albridge Web Services SmartLink fr Albridge Web Services Cpyright 2008, E-Z Data, Inc. All Rights Reserved. N part f this dcumentatin may be cpied, reprduced r translated in any frm withut the prir written cnsent f E-Z Data,

More information

How to use DCI Contract Alerts

How to use DCI Contract Alerts Hw t use DCI Cntract Alerts Welcme t the MyDCI Help Guide series Hw t use DCI Cntract Alerts In here, yu will find a lt f useful infrmatin abut hw t make the mst f yur DCI Alerts which will help yu t fully

More information

HP MPS Service. HP MPS Printer Identification Stickers

HP MPS Service. HP MPS Printer Identification Stickers HP MPS Service We welcme yu t HP Managed Print Services (MPS). Fllwing yu will find infrmatin regarding: HP MPS printer identificatin stickers Requesting service and supplies fr devices n cntract Tner

More information

Wave IP 4.5. CRMLink Desktop User Guide

Wave IP 4.5. CRMLink Desktop User Guide Wave IP 4.5 CRMLink Desktp User Guide 2015 by Vertical Cmmunicatins, Inc. All rights reserved. Vertical Cmmunicatins and the Vertical Cmmunicatins lg and cmbinatins theref and Vertical ViewPint, Wave Cntact

More information

OO Shell for Authoring (OOSHA) User Guide

OO Shell for Authoring (OOSHA) User Guide Operatins Orchestratin Sftware Versin: 10.70 Windws and Linux Operating Systems OO Shell fr Authring (OOSHA) User Guide Dcument Release Date: Nvember 2016 Sftware Release Date: Nvember 2016 Legal Ntices

More information

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators

VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual for Tour Operators VISITSCOTLAND - TOURS MANAGEMENT SYSTEM Manual fr Tur Operatrs 1 CONTENTS GETTING STARTED... 3 REGISTER AND CREATE YOUR ACCOUNT... 3 OPERATOR PROFILE... 4 Create yur Operatr Prfile... 4 ADD A TOUR LISTING...

More information

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices

HPE LoadRunner Best Practices Series. LoadRunner Upgrade Best Practices HPE LadRunner Best Practices Series LadRunner 12.50 Upgrade Best Practices Dcument publicatin date: Nvember 2015 Cntents 1. Intrductin... 3 Overview... 3 Audience... 3 2. Preparatin... 3 Backup assets...

More information

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways:

Once the Address Verification process is activated, the process can be accessed by employees in one of two ways: Type: System Enhancements ID Number: SE 94 Date: June 29, 2012 Subject: New Address Verificatin Prcess Suggested Audience: Human Resurce Offices Details: Sectin I: General Infrmatin fr Address Verificatin

More information

Dispatch Application Programming Interface

Dispatch Application Programming Interface Intrductin Fleet Managers need t be able t dispatch drivers and their vehicles t a variety f lcatins: jbs, deliveries, service lcatins, etc. Cntig CONNECT prvides a way t track vehicle lcatins, and cmmunicate

More information

Callback Guide. A step by step guide to integrating Callback with your website. All the information you need to confirm Nochex payments.

Callback Guide. A step by step guide to integrating Callback with your website. All the information you need to confirm Nochex payments. Callback Guide A step by step guide t integrating Callback with yur website. All the infrmatin yu need t cnfirm Nchex payments. IMPORTANT Custmers are always recmmended t back up their cde befre making

More information

User Guide. Avigilon Control Center Mobile Version 2.2 for Android

User Guide. Avigilon Control Center Mobile Version 2.2 for Android User Guide Avigiln Cntrl Center Mbile Versin 2.2 fr Andrid 2011-2015, Avigiln Crpratin. All rights reserved. Unless expressly granted in writing, n license is granted with respect t any cpyright, industrial

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Type: System Enhancements ID Number: SE 93. Subject: Changes to Employee Address Screens. Date: June 29, 2012

Type: System Enhancements ID Number: SE 93. Subject: Changes to Employee Address Screens. Date: June 29, 2012 Type: System Enhancements ID Number: SE 93 Date: June 29, 2012 Subject: Changes t Emplyee Address Screens Suggested Audience: Human Resurce Offices Details: On July 14, 2012, Peple First will implement

More information

Amyuni Document Converter

Amyuni Document Converter Amyuni Dcument Cnverter Versin 5.0 Prfessinal Quick Start Guide fr Develpers Updated May, 2013 AMYUNI Cnsultants AMYUNI Technlgies www.amyuni.cm 2 Cntents Cntents... 3 Legal Infrmatin... 4 Imprtant Nte

More information

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform

Your New Service Request Process: Technical Support Reference Guide for Cisco Customer Journey Platform Supprt Guide Yur New Service Request Prcess: Technical Supprt Reference Guide fr Cisc Custmer Jurney Platfrm September 2018 2018 Cisc and/r its affiliates. All rights reserved. This dcument is Cisc Public

More information

TaskCentre v4.5 XML to Recordset Tool White Paper

TaskCentre v4.5 XML to Recordset Tool White Paper TaskCentre v4.5 XML t Recrdset Tl White Paper Dcument Number: PD500-03-15-1_0-WP Orbis Sftware Limited 2010 Table f Cntents COPYRIGHT 1 TRADEMARKS 1 INTRODUCTION 2 Overview 2 GLOBAL CONFIGURATION 2 Schema

More information

Advanced and Customized Net Conference Powered by Cisco WebEx Technology

Advanced and Customized Net Conference Powered by Cisco WebEx Technology User Guide: Advanced and Custmized Net Cnference Pwered by Cisc WebEx Technlgy Prductivity Tls USER GUIDE Verizn Net Cnferencing h l M ti C t Advanced and Custmized Net Cnference Pwered by Cisc WebEx Technlgy

More information

Dynamic Storage (ECS)

Dynamic Storage (ECS) User Guide Dynamic Strage (ECS) Swisscm (Schweiz) AG 1 / 10 Cntent 1 Abut Dynamic Strage... 3 2 Virtual drive, the EMC CIFS-ECS Tl... 4 3 Amazn S3 Brwer... 6 4 Strage Gateway Appliance... 9 5 Amazn S3

More information

Password Management Guidelines

Password Management Guidelines Unified Cntract System Passwrd Management Guidelines Versin 2.5 Revisin date: 26-06-2006 Authr:J.Thiyagarajan Cpyright 2006 by Hexaware Technlgies Limited All rights reserved. All text and figures included

More information

RSA SecurID (Token): Passcode & PIN Initialization / Setup Guide

RSA SecurID (Token): Passcode & PIN Initialization / Setup Guide T h e R c k e f e l l e r U n i v e r s i t y I N F O R M A T I O N T E C H N O L O G Y E D U C A T I O N & T R A I N I N G RSA SecurID (Tken): Passcde & PIN Initializatin / Setup Guide RSA Tken PIN Initializatin

More information

Announcing Veco AuditMate from Eurolink Technology Ltd

Announcing Veco AuditMate from Eurolink Technology Ltd Vec AuditMate Annuncing Vec AuditMate frm Eurlink Technlgy Ltd Recrd any data changes t any SQL Server database frm any applicatin Database audit trails (recrding changes t data) are ften a requirement

More information

Milestone XProtect. NVR Installer s Guide

Milestone XProtect. NVR Installer s Guide Milestne XPrtect NVR Installer s Guide Target Audience fr this Dcument This guide is relevant fr peple respnsible fr delivering and installing Milestne XPrtect NVR surveillance systems. If yu are a Milestne

More information

MANAGING FORWARDING ACCOUNTS

MANAGING  FORWARDING ACCOUNTS Overview This prcess is t be perfrmed as needed t manage e-mail frwarding accunts fr Alumni. Several tasks may need t be perfrmed: Adding a new user t the security table Resetting a user s passwrd ( frgt

More information

Creating an Online Account

Creating an Online Account The Standard uses secure, nline accunts t prtect yur data and prvide access t yur emplyer s absence services. T use these services, yu will need t create an nline accunt. Getting started Allw 15 minutes

More information

NowPrint Release Notes. Last Updated: 2/1/2012

NowPrint Release Notes. Last Updated: 2/1/2012 NwPrint 8.0.3.22 Release Ntes Last Updated: 2/1/2012 NwDcs, Internatinal 2012 Page 1 February 1, 2012 Cpyright Infrmatin in this dcument is subject t change withut ntice. N part f this dcument may be reprduced

More information

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors

Configuring Database & SQL Query Monitoring With Sentry-go Quick & Plus! monitors Cnfiguring Database & SQL Query Mnitring With Sentry-g Quick & Plus! mnitrs 3Ds (UK) Limited, Nvember, 2013 http://www.sentry-g.cm Be Practive, Nt Reactive! One f the best ways f ensuring a database is

More information

Online Image Viewing Agent User Guide. Texas FAIR Plan Association 1

Online Image Viewing Agent User Guide. Texas FAIR Plan Association 1 Online Image Viewing gent User Guide Texas FIR Plan ssciatin 1 Table f Cntents 1. Online Image Viewing... 4 2. Frequently sked uestins (F)... 15 TFP Online Image Viewing Guide 2 Table f Figures Figure

More information

Using the Swiftpage Connect List Manager

Using the Swiftpage Connect List Manager Quick Start Guide T: Using the Swiftpage Cnnect List Manager The Swiftpage Cnnect List Manager can be used t imprt yur cntacts, mdify cntact infrmatin, create grups ut f thse cntacts, filter yur cntacts

More information

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page

Proper Document Usage and Document Distribution. TIP! How to Use the Guide. Managing the News Page Managing the News Page TABLE OF CONTENTS: The News Page Key Infrmatin Area fr Members... 2 Newsletter Articles... 3 Adding Newsletter as Individual Articles... 3 Adding a Newsletter Created Externally...

More information

DICOM Correction Proposal

DICOM Correction Proposal DICOM Crrectin Prpsal STATUS Final Text Date f Last Update 2014/06/25 Persn Assigned Submitter Name James Philbin Jnathan Whitby (jwhitby@vitalimages.cm) Submissin Date 2013/10/17 Crrectin Number CP-1351

More information

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins)

RISKMAN REFERENCE GUIDE TO USER MANAGEMENT (Non-Network Logins) Intrductin This reference guide is aimed at managers wh will be respnsible fr managing users within RiskMan where RiskMan is nt cnfigured t use netwrk lgins. This guide is used in cnjunctin with the respective

More information

INSTALLING CCRQINVOICE

INSTALLING CCRQINVOICE INSTALLING CCRQINVOICE Thank yu fr selecting CCRQInvice. This dcument prvides a quick review f hw t install CCRQInvice. Detailed instructins can be fund in the prgram manual. While this may seem like a

More information

To start your custom application development, perform the steps below.

To start your custom application development, perform the steps below. Get Started T start yur custm applicatin develpment, perfrm the steps belw. 1. Sign up fr the kitewrks develper package. Clud Develper Package Develper Package 2. Sign in t kitewrks. Once yu have yur instance

More information

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM

AvePoint Pipeline Pro 2.0 for Microsoft Dynamics CRM AvePint Pipeline Pr 2.0 fr Micrsft Dynamics CRM Installatin and Cnfiguratin Guide Revisin E Issued April 2014 1 Table f Cntents Abut AvePint Pipeline Pr... 3 Required Permissins... 4 Overview f Installatin

More information

Procurement Contract Portal. User Guide

Procurement Contract Portal. User Guide Prcurement Cntract Prtal User Guide Cntents Intrductin...2 Access the Prtal...2 Hme Page...2 End User My Cntracts...2 Buttns, Icns, and the Actin Bar...3 Create a New Cntract Request...5 Requester Infrmatin...5

More information

Skype Meetings

Skype Meetings http://www.jeffersnstate.edu/resurces-fr-instructrs-de/ Skype Meetings Skype-t-Skype is used fr cmmunicatin thrugh vice, vide, chat (Instant Messaging) and/r desktp sharing fr ne-n-ne cnferences, meetings,

More information

In Outlook, how do I allow other users to view my Calendar or other folders in my Exchange mailbox?

In Outlook, how do I allow other users to view my Calendar or other folders in my Exchange mailbox? In Outlk, hw d I allw ther users t view my Calendar r ther flders in my Exchange mailbx? Yu can allw thers within yur Exchange rganizatin t access yur mailbx flders. Yu can use Outlk t share yur mailbx

More information

Aras Innovator 11. Client Settings for Chrome on Windows

Aras Innovator 11. Client Settings for Chrome on Windows Dcument #: 11.0.02016022601 Last Mdified: 1/11/2018 Cpyright Infrmatin Cpyright 2018 Aras Crpratin. All Rights Reserved. Aras Crpratin 300 Brickstne Square Suite 700 Andver, MA 01810 Phne: 978-691-8900

More information

Frequently Asked Questions Read and follow all instructions for success!

Frequently Asked Questions Read and follow all instructions for success! Frequently Asked Questins Read and fllw all instructins fr success! Last Updated December 2016. Visit mccartheydressman.rg and click HELP fr updates Apr 16 Jan 14 PREPARE Jan 15 - Apr 15 SUBMIT READ all

More information

Aras Innovator Viewer Add-Ons

Aras Innovator Viewer Add-Ons Aras Innvatr Viewer Add-Ons Aras Innvatr 9.2 Dcument #: 9.2.02232009 Last Mdified: 4/1/2010 Aras Crpratin ARAS CORPORATION Cpyright 2010 All rights reserved Aras Crpratin 300 Brickstne Square Suite 904

More information

ROCK-POND REPORTING 2.1

ROCK-POND REPORTING 2.1 ROCK-POND REPORTING 2.1 AUTO-SCHEDULER USER GUIDE Revised n 08/19/2014 OVERVIEW The purpse f this dcument is t describe the prcess in which t fllw t setup the Rck-Pnd Reprting prduct s that users can schedule

More information

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014

Refreshing Axiom TEST with a Current Copy of Production Axiom EPM June 20, 2014 Refreshing Axim TEST with a Current Cpy f Prductin Axim EPM June 20, 2014 Refreshing Axim TEST If yu maintain an Axim TEST envirnment yu will want t refresh it with a current cpy f yur PROD database when

More information

Case Metrics Guide. January 11, 2019 Version For the most recent version of this document, visit our documentation website.

Case Metrics Guide. January 11, 2019 Version For the most recent version of this document, visit our documentation website. Case Metrics Guide January 11, 2019 Versin 9.6.202.10 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Table f Cntents 1 Case Metrics 3 1.1 Case Metrics Cmpatibility Matrix 3 1.2

More information

Relius Documents ASP Checklist Entry

Relius Documents ASP Checklist Entry Relius Dcuments ASP Checklist Entry Overview Checklist Entry is the main data entry interface fr the Relius Dcuments ASP system. The data that is cllected within this prgram is used primarily t build dcuments,

More information

TIBCO Statistica Options Configuration

TIBCO Statistica Options Configuration TIBCO Statistica Optins Cnfiguratin Sftware Release 13.3 June 2017 Tw-Secnd Advantage Imprtant Infrmatin SOME TIBCO SOFTWARE EMBEDS OR BUNDLES OTHER TIBCO SOFTWARE. USE OF SUCH EMBEDDED OR BUNDLED TIBCO

More information

Ephorus Integration Kit

Ephorus Integration Kit Ephrus Integratin Kit Authr: Rbin Hildebrand Versin: 2.0 Date: May 9, 2007 Histry Versin Authr Cmment v1.1 Remc Verhef Created. v1.2 Rbin Hildebrand Single Sign On (Remved v1.7). v1.3 Rbin Hildebrand Reprting

More information

TechSmith Relay 5.1.5

TechSmith Relay 5.1.5 TechSmith Relay 5.1.5 WHAT END USERS NEED TO KNOW This upgrade cmes with new features that will be available t yu. Fr all f these feature t be installed n yur cmputer few steps will need t be taken. After

More information

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board

ONTARIO LABOUR RELATIONS BOARD. Filing Guide. A Guide to Preparing and Filing Forms and Submissions with the Ontario Labour Relations Board ONTARIO LABOUR RELATIONS BOARD Filing Guide A Guide t Preparing and Filing Frms and Submissins with the Ontari Labur Relatins Bard This Filing Guide prvides general infrmatin nly and shuld nt be taken

More information

September 24, Release Notes

September 24, Release Notes September 24, 2013 Release Ntes Cntacting Lestream Lestream Crpratin 411 Waverley Oaks Rd. Suite 316 Waltham, MA 02452 USA http://www.lestream.cm Telephne: +1 781 890 2019 Fax: +1 781 688 9338 T submit

More information

Jira For T2S. External User Guide. Version 1.1

Jira For T2S. External User Guide. Version 1.1 Jira Fr T2S External User Guide Versin 1.1 Cntents 1.0 Dcument Management 4 1.1 Dcument Identifier 4 1.2 Dcument Histry 4 2.0 Intrductin 4 3.0 Getting Started 5 3.1 Cnnect 5 3.2 Lg In 5 4.0 Create an

More information

Getting Started with the Web Designer Suite

Getting Started with the Web Designer Suite Getting Started with the Web Designer Suite The Web Designer Suite prvides yu with a slew f Dreamweaver extensins that will assist yu in the design phase f creating a website. The tls prvided in this suite

More information

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern

Design Patterns. Collectional Patterns. Session objectives 11/06/2012. Introduction. Composite pattern. Iterator pattern Design Patterns By Võ Văn Hải Faculty f Infrmatin Technlgies HUI Cllectinal Patterns Sessin bjectives Intrductin Cmpsite pattern Iteratr pattern 2 1 Intrductin Cllectinal patterns primarily: Deal with

More information

Receiving, Completing and Submitting an HP Materials Declaration Using the Material Declaration Form (MDF 2.0)

Receiving, Completing and Submitting an HP Materials Declaration Using the Material Declaration Form (MDF 2.0) Receiving, Cmpleting and Submitting an Materials Declaratin Using the Material Declaratin Frm (MDF 2.0) Supplier Training Agenda 1. Prcess verview 2. Email request frm t cmplete a material declaratin 3.

More information

Lab 4. Name: Checked: Objectives:

Lab 4. Name: Checked: Objectives: Lab 4 Name: Checked: Objectives: Learn hw t test cde snippets interactively. Learn abut the Java API Practice using Randm, Math, and String methds and assrted ther methds frm the Java API Part A. Use jgrasp

More information

Access the site directly by navigating to in your web browser.

Access the site directly by navigating to   in your web browser. GENERAL QUESTIONS Hw d I access the nline reprting system? Yu can access the nline system in ne f tw ways. G t the IHCDA website at https://www.in.gv/myihcda/rhtc.htm and scrll dwn the page t Cmpliance

More information

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2

I - EDocman Installation EDocman component EDocman Categories module EDocman Documents Module...2 I - EDcman Installatin...2 1 - EDcman cmpnent...2 2 - EDcman Categries mdule...2 3 - EDcman Dcuments Mdule...2 4 - EDcman Search Plugin...3 5 - SH404 SEF plugin...3 II - Using EDcman extensin...3 I - EDcman

More information

Reporting Requirements Specification

Reporting Requirements Specification Cmmunity Mental Health Cmmn Assessment Prject OCAN 2.0 - ing Requirements Specificatin May 4, 2010 Versin 2.0.2 SECURITY NOTICE This material and the infrmatin cntained herein are prprietary t Cmmunity

More information

Integrating QuickBooks with TimePro

Integrating QuickBooks with TimePro Integrating QuickBks with TimePr With TimePr s QuickBks Integratin Mdule, yu can imprt and exprt data between TimePr and QuickBks. Imprting Data frm QuickBks The TimePr QuickBks Imprt Facility allws data

More information

Please contact technical support if you have questions about the directory that your organization uses for user management.

Please contact technical support if you have questions about the directory that your organization uses for user management. Overview ACTIVE DATA CALENDAR LDAP/AD IMPLEMENTATION GUIDE Active Data Calendar allws fr the use f single authenticatin fr users lgging int the administrative area f the applicatin thrugh LDAP/AD. LDAP

More information

RxAXIS Security Module 09/25/2013

RxAXIS Security Module 09/25/2013 RxAXIS Security Mdule 09/25/2013 Lessn Title Intrductin: Security Mdule In this tutrial we are ging t lk at the Security Maintenance Mdule f the RxAXIS system. When used, this system gives emplyees access

More information

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form

161 Forbes Road Braintree MA Phone: (781) Fax: (781) What's in it? Key Survey & Extreme Form 161 Frbes Rad Braintree MA 02184 Phne: (781) 849 8118 Fax: (781) 849 8133 WWW.WORLDAPP.COM 8.0 What's in it? Key Survey & Extreme Frm CONTENTS Cntact Manager... 3 Participant Prtal... 3 Reprting Imprvements...

More information

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template

Network Rail ARMS - Asbestos Risk Management System. Training Guide for use of the Import Survey Template Netwrk Rail ARMS - Asbests Risk Management System Training Guide fr use f the Imprt Survey Template The ARMS Imprt Survey Template New Asbests Management Surveys and their Survey Detail reprts can be added

More information

Single File Upload Guide

Single File Upload Guide Single File Uplad Guide August 15, 2018 Versin 9.6.134.78 Single File Uplad Guide 1 Fr the mst recent versin f this dcument, visit ur dcumentatin website. Single File Uplad Guide 2 Table f Cntents 1 Single

More information

Table of Contents. WipeDrive Enterprise Logging, March Logging Settings... 3 Log Format Types Audit Log Destination Options...

Table of Contents. WipeDrive Enterprise Logging, March Logging Settings... 3 Log Format Types Audit Log Destination Options... WipeDrive Enterprise Lgging, March 2018 Table f Cntents Lgging Settings... 3 Lg Frmat Types... 4 Plain Text Lg File Optin... 4 Extensible Markup Language (XML) Lg File Optin... 6 Cmma Delimited (CSV) Lg

More information

Background Check Procedures for Sponsors

Background Check Procedures for Sponsors Backgrund Check Prcedures fr Spnsrs 1 On-Site Backgrund Check and Credential Requirements Little League Internatinal requires all guests n the cmplex in a wrking capacity t cmplete a Natinal Criminal Backgrund

More information

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide

Xilinx Answer Xilinx PCI Express DMA Drivers and Software Guide Xilinx Answer 65444 Xilinx PCI Express DMA Drivers and Sftware Guide Imprtant Nte: This dwnladable PDF f an Answer Recrd is prvided t enhance its usability and readability. It is imprtant t nte that Answer

More information

MARYLAND PHYSICIANS CARE (00247) ERA ENROLLMENT INSTRUCTIONS

MARYLAND PHYSICIANS CARE (00247) ERA ENROLLMENT INSTRUCTIONS MARYLAND PHYSICIANS CARE (00247) ERA ENROLLMENT INSTRUCTIONS WHICH FORM(S) SHOULD I DO? Emden EnrllNw (Click here) NOTE: This is cmpleted nline. Office Ally supprts nly the payers listed n the Emden ERA

More information

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents

HP ExpertOne. HP2-T21: Administering HP Server Solutions. Table of Contents HP ExpertOne HP2-T21: Administering HP Server Slutins Industry Standard Servers Exam preparatin guide Table f Cntents In this sectin, include a table f cntents (TOC) f all headings. After yu have finished

More information

Your Project Plan and Smartsheet

Your Project Plan and Smartsheet USG Managed Services Yur Prject Plan and Smartsheet Change Management Tlkit Cntents 1.0 Purpse... 3 2.0 Accessing Smartsheet and Yur Prject Plan... 4 2.1 Smartsheet Lgin... 4 2.2 Type f Access... 5 3.0

More information

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS

SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS SUPPLIER CONNECTION SUPPLIER REFERENCE GUIDE FOR LEAR SUPPLIERS T ABLE OF C ONTENTS Table f Cntents... 1 Intrductin... 2 Target Audience... 2 Objectives... 2 Other Resurces... 2 Assumptins... 2 Verify

More information

Enterprise Chat and Developer s Guide to Web Service APIs for Chat, Release 11.6(1)

Enterprise Chat and  Developer s Guide to Web Service APIs for Chat, Release 11.6(1) Enterprise Chat and Email Develper s Guide t Web Service APIs fr Chat, Release 11.6(1) Fr Unified Cntact Center Enterprise August 2017 Americas Headquarters Cisc Systems, Inc. 170 West Tasman Drive San

More information

ClubRunner. Volunteers Module Guide

ClubRunner. Volunteers Module Guide ClubRunner Vlunteers Mdule Guide 2014 Vlunteer Mdule Guide TABLE OF CONTENTS Overview... 3 Basic vs. Enhanced Versins... 3 Navigatin... 4 Create New Vlunteer Signup List... 5 Manage Vlunteer Tasks... 7

More information

ComplyWorks Subscription User Guide. October 6, 2011

ComplyWorks Subscription User Guide. October 6, 2011 CmplyWrks Subscriptin User Guide Octber 6, 2011 Cntents 1. Register... 3 2. Get cmpliant... 3 a) Pay fr yur accunt... 3 b) Cllect the dcuments yu ll need... 4 c) Enter yur infrmatin... 4 d) Publish yur

More information