Efecte Service Management 2015 Web API

Size: px
Start display at page:

Download "Efecte Service Management 2015 Web API"

Transcription

1 Efecte Service Management 2015 Web API Updated May 5, 2015 Efecte Corp.

2 2 (17) TABLE OF CONTENTS 1 Overview Efecte Web API DataCardImport service Delete service Search service FileMetadata service FileDownload Service FileUpload Service Fetching Data Card Schema, i.e., Template Business Day service Security Web API errors Copyright 2014 Efecte Corporation. All rights reserved. Copyright of this document is vested in Efecte Corporation. This document or any part of it may not be translated, reproduced or transmitted by any means for any purpose without permission of Efecte Corporation. This document may not be communicated to any third party without permission of Efecte Corporation. All information presented in this document is subject to change without notice and does not represent commitment on Efecte Corporation.

3 3 (17)

4 4 (17) 1 Overview The purpose of this document is to describe the Efecte Web API that is used for integrating Efecte with other systems. 2 Efecte Web API In this section we will describe the Efecte Web API that external applications use to integrate themselves with Efecte. The API is built on top of standard HTTP protocol. Efecte Web API methods are invoked from Efecte URL + /servicename, where servicename is the name of the operation. NOTE! The schema files referred to in this document can be found internally in M-Files (under Documents by Product > Efecte Integration Suite > Efecte Web API Schemas). They will also be available via Efecte Extranet in the near future. 2.1 DataCardImport service URL: datacardimport.ws Example: Put XML as the HTTP BODY and set the Content-Type as text/xml. In order to create a new data card into Efecte, user needs to invoke the datacardimport service. The service takes Data card XML as a HTTP BODY, so the caller needs to know the XML syntax and the Efecte schema for the created data card. This document does not specify the XML schema, so refer to Efecte XML Schema to get information about that. The createdatacards parameter has to be set to true when new data cards are created. In order to modify an existing data card, you need to have at least one data card field in the sent XML that is defined as unique in Efecte. Efecte then tries to match the incoming data to a data card and update the matched card. The updatedatacards parameter has to be set to true when existing data cards are modified. Note that in the update case the XML attribute values replace the existing values and those fields that do not exist in XML are kept as they are in Efecte. If you want to remove attribute values from Efecte, leave value element in the XML empty and use the removeemptyvalues parameter. Here is a list of the possible HTTP parameters that are used: Parameter Name Required Possible Values Default Desciption updatedatacards {true, false} true createdatacards {true, false} true Are matched data cards updated Are non-matched data cards created createstaticattributes {true, false} false Are new static values created createemptyreferences {true, false} false ignoreuniquechecks {true, false} false restrictupdatetofolderid Valid ID of a data card folder in Efecte Are not-matched references created as empty data cards Are the uniqueness checks for data cards fields ignored Sets the folder where data card updating is restricted to. This parameter can be added

5 5 (17) restrictupdatetofoldercode folderid X* foldercode X* Valid code of a data card folder in Efecte Valid ID of a data card folder in Efecte Valid code of a data card folder in Efecte removeemptyvalues {true, false} false version Which version of DataCardImport service should be used in response multiple times. Using the restrictupdatetofoldercode parameter is not allowed when restrictupdatetofolderid is used. Sets the folder where data card updating is restricted to. This parameter can be added multiple times. Using the restrictupdatetofolderid is not allowed when restrictupdatetofoldercode is used. Sets the folder where new imported data cards will be created Sets the folder where new imported data cards will be created If set to true, Efecte removes data card values that are denoted in the XML with empty value element. If value is 1.1, root element in returned XML will always be <response>, i.e. web-apiimport-response-1_1.xsd is used. Otherwise, web-apiimport-response.xsd is used (root element is <entity-importreport> or <error>). Table 1. Possible HTTP parameters for the DataCardImport service (* Either folderid or foldercode has to be included in the parameters) Returned XML By default, the DataCardImport service will return an XML document conforming to the schema web-api-import-response.xsd. The XML is either <entity-import-report> or a Web API error (<error>). For example, here import is successful and one data card has been created: <?xml version="1.0" encoding="utf-8"?> <entity-import-report> <start-time> :39:36</start-time> <total-time>0,414</total-time> <entities-handled-per-second>2,415</entities-handled-per-second> <average-entity-handling-time>0,414</average-entity-handling-time> <user>webapiuser</user> <entities-handled>1</entities-handled> <entities-saved>1</entities-saved> <entities-updated>0</entities-updated> <entities-created>1</entities-created>

6 6 (17) </entity-import-report> Here is an example of a case where the import fails and an error is returned because neither folderid nor foldercode parameter was included in the request: <?xml version="1.0" encoding="utf-8"?> <error> <code>efe-2012</code> <description>invalid parameters: no folderid or code found</description> </error> When parameter version has value 1.1, the DataCardImport service will return an XML document conforming to the schema web-api-import-response-1_1.xsd, in which the root element will always be <response>. For example, with version 1.1, the error message used above would be: <?xml version="1.0" encoding="utf-8"?> <response> <error> <code>efe-2012</code> <description>invalid parameters: no folderid or code found</description> </error> </response> NOTE! In general, if any of the required parameters (listed in Table 1) are missing or contain invalid values, a Web API error is returned. This is also the case with Web API authentication and authorization errors. (See chapter 3 Web API errors for more information on Web API errors.) However, if something else goes wrong during the import of some data cards (e.g., the template of imported cards is misconfigured), the DataCardImport service returns <entityimport-report> containing information about handled data cards and about any errors that occurred during the import Example: appending values to a multivalue field & the format for messages sent to Worklog handler via API If you wish to append (add) values to a multivalue field without overriding the existing values, you need to use a special parameter in the data card XML. Below you see an example of such case and the parameter is highlighted. <?xml version="1.0" encoding="utf-8"?> <entityset> <entity> <template code="template_code"/> <attribute code="unique_attribute"> <value>id </value> </attribute> <attribute code="worklog_attribute_code" append="true"> <value> </value> </attribute> </entity> </entityset> {"message": "I like cookies", "author" :"John Doe", "date" : " T09:32:170000"}

7 7 (17) 2.2 Delete service This example also shows the format of a message sent via Web API to an attribute, which has a Worklog handler. The message consists of the message, author and date and time. URL: delete.ws Example: In order to remove an existing data card from Efecte, user needs to invoke the delete service. The service can delete data cards based on two different criteria: internal data card ID (entity ID) a search query; data cards that match the query will be removed

8 8 (17) Parameter Name Required Ids x* Query x* Possible Values Default usetrashcan {true, false} false Comma-separated list of internal data card (entity) IDs, identifying data cards to be removed An EQL query specifying the data cards to be removed. The query must be such that when given to the Search web service, it would return data in the Efecte data card XML (entity XML) format, i.e. the query must be of form "select entity from entity [...]". By default, data cards are removed permanently; in other words, they are not just moved to trashcan. Setting this parameter to "true", has the effect that trashcan will be used, similarly as when normally deleting data cards through Efecte's web interface. In this mode, data cards will be only removed permanently if they already were in trashcan. Table 2. Possible HTTP parameters for the Delete service (* Either one of the two parameters (ids, query) is required. The parameters are handled in this order, and only one will be taken into account on one invocation of the service. If both ids and query parameters are specified, the service will disregard the query parameter and will only attempt to remove data cards based on the ids parameter.) 2.3 Search service URL: search.ws Example: Parameter Name Required Possible Values query x Any valid EQL query Specifies the search query Table 3. Possible HTTP parameters for the Search service Searching for Data Cards In order to search data cards Efecte offers a datacardsearch web service that takes an EQL (Efecte Query Language) query and returns the results as XML. See Efecte Query Language for more information on how to construct EQL queries. The XML returned by the search service is in one of the following three formats: Entity XML Template XML Generic XML Entity XML and Template XML are described in the Efecte XML Schema document. The generic XML format is described with examples below. Note that the the generic format may include complete instances of Entity XML and Template XML, depending on the EQL query.

9 9 (17) Date values are always returned in a format yyyy-mm-dd HH:mm:ss z, following the ISO 8601 standard. Note that time zone name is included in the end. The time zone used is always the JVM s or database s default timezone. Note that if multiple timezone support is enabled, this may differ from Entity XML, where datetime values are adjusted to the Web service user's timezone setting. In decimal numbers, a dot (.) is used as a decimal separator. The character encoding used in the response XML depends on the webservice.response.encoding framework property. Default encoding is UTF Generic result XML Possible datatype elements for single values are given in the following table. Element Notes <date> The pattern used is always yyyy-mm-dd HH:mm:ss z. <decimal> Decimal numbers; decimal separator is always "." <integer> Integer numbers <string> Many Efecte datatypes (not only text and string, but also external references, etc,) are output as strings <null> Null values are a special case. For instance, a string attribute that has a null value will not appear as <string></string> or <string>null</string>, but simply as <null/> Table 4. Possible datatype elements for generic search results Simple example A document consisting of <string> values, directly below the <result> element, is returned in response to the simple EQL query. EQL query: select entity.name from entity where entity.folder.name = 'Printer' Search web service response: <?xml version="1.0" encoding="utf-8"?> <result> <string>hp Laserjet 6L</string> <string>hp LaserJet 6L</string> <string>hp Laserjet 8150 N</string> <string>hp LaserJet III</string> <string>hp psc 2210 all-in-one</string> <string>seiko Instruments SLP220</string> <string>stork Amber-reactive</string> <string>hp DeskJet 990Cxi</string> </result>

10 10 (17) Example with several rows When selecting several fields, the results are grouped using <row> elements. EQL query: select $serialnumber$, $software_name$ from entity where entity.template.code = 'installed_software' Search web service response: <?xml version="1.0" encoding="utf-8"?> <result> <row> <integer>85730</integer> <string>matrox Graphics Software (remove only)</string> </row> <row> <integer>85730</integer> <string>microsoft Office 2000 Proofing Tools Disc 1</string> </row> <row> <integer>85730</integer> <string>microsoft Internet Explorer 6 SP1 and Internet Tools</string> </row> <row> <integer>85730</integer> <string>microsoft Office 2000 SR-1 Professional</string> </row> <row> <integer>85730</integer> <string>microsoft Office 2000 SR-1 Disc 2</string> </row> <row> <integer>85730</integer> <string>microsoft Outlook Express 6</string> </row> </result> Example with embedded Entity XML In this case, the generic result XML includes complete Entity XML documents "embedded" in it, along with simple <string> values: EQL query: select entity.folder.name, entity.referencedata.target from entity where entity.templateid = 340 Search web service response: <?xml version="1.0" encoding="utf-8"?> <result> <row> <string>desktop-integraatio</string> <entity id="565657" name="joo"> <template id="342" name="hyvin pitkäniminen testimalli" code="111"/>

11 11 (17) <group id="457" name="groupnodes"/> <attribute id="3245" name="name" code=""> <value>joo</value> </attribute> </entity> </row> <row> <string>kansio 2</string> <entity id="565660" name="hello, world"> <template id="342" name="hyvin pitkäniminen testimalli" code="111"/> <group id="457" name="groupnodes"/> <attribute id="3245" name="name" code=""> <value>hello, world</value> </attribute> </entity> </row> </result> The case of embedded Template XML is analogous with that of embedded Entity XML. 2.4 FileMetadata service Since: Efecte 4.1 patch 4108 URL: filemetadata.ws Example: File Metadata service is used to get information about the file attachments attached to a data card. If the data card contains multiple fields with attachments, information of all those attachments is returned at the same time. This makes the API less verbose. Since Efecte 4.2, the Metadata service returns not only name but also displayname for each attachment. Name is an internal filename (e.g _43.txt ) that is used as an identifier when making requests to the File Download Service (see next section). Displayname is the original name of the attachment file, which usually more human-readable (e.g. readme.txt ). Parameter Name Required Possible Values entityid x Id of any data card in the system, therefore an integer Specifies the data card whose file metadata is fetched Table 5. Possible HTTP parameters for the File Metadata service File Metadata service usage example We have a data card with ID 123. We call the metadata service with URL and receive the following XML as a result: <?xml version="1.0" encoding="utf-8"?> <entity-attachment-metadata> <entity id="123"> <attribute id="443" code="attachment_link"> <attachment> <name> _32.exe</name> <displayname>setup.exe</displayname>

12 12 (17) <size>305664</size> <last-modified> :53:44 EEST</last-modified> </attachment> <attachment> <name> _4.exe</name> <displayname>iview398.exe</displayname> <size>905216</size> <last-modified> :53:44 EEST</last-modified> </attachment> </attribute> </entity> </entity-attachment-metadata> 2.5 FileDownload Service Since: Efecte 4.1 patch 4108 URL: filedownload.ws Example: File download service is used to download files attached to data cards residing in Efecte. Files are returned in the HTTP response. The client should always first check the HTTP status code of the response. The body of the response may be interpreted as the requested file only when the status code is 200 OK. Other status codes that the service typically sets are: 400 Bad Request - if some of the required parameters are missing 403 Forbidden if the webservice user has no permissions for the specified data card or attribute 404 Not Found if the requested file is not found In these error situations, the HTTP response body is an XML error message with more detailed information. Parameter Name Required Possible Values entityid x Integer attributeid x Integer filename x String Specifies the data card where the requested file is attached Specifies the data card field where the requested file is attached Specifies the name of the requested file. This corresponds to an attachment s name element (not the displayname), as returned by the Metadata service. Table 6. Possible HTTP parameters for the File Download service 2.6 FileUpload Service Since: Efecte 4.1 patch 4108 URL: fileupload.ws Example:

13 13 (17) File upload service is used to upload files to a Efecte data card. File upload service parses HTTP requests which conform to RFC 1867, "Form-based File Upload in HTML". That is, if an HTTP request is submitted using the POST method, and with a content type of "multipart/formdata". It is possible to send multiple files at once, if needed. Parameter Name Required Possible Values entityid x Integer attributeid x Integer operationtype String Specifies the data card where the uploaded file should be attached to Specifies the data card field where the uploaded file should be attached to add means that the uploaded file is added amongst other files that may already be present in the selected field. set means that the uploaded file replaces the files already present in the selected field. The default operation is set. Table 1. Possible HTTP parameters for the File Upload service 2.7 Fetching Data Card Schema, i.e., Template Efecte data card metadata, i.e., information of what fields it can contain and their properties, can be accessed through the datacardsearch web service with an EQL query to the templates. Here is an example EQL query that selects all templates: select template from template For more information on EQL, refer to the document Efecte Query Language. 2.8 Business Day service Since: Efecte 7.0 patch URL: businessday.ws Example: Business+Hours&date= T08%3A00%3A00.000%2B02%3A00 Business day service can be used to detect when Service Desk implemented by Efecte Service Management is open. Business hours are configured by data cards of Business Ho urs - template. There must exist exactly one Business Hours data card for given name parameter in Efecte or error codes EFE-6003 (Found nothing) or EFE-6004 (Found too many) will be returned.

14 14 (17) Parameter Name Required Possible Values businesshours x String date Date in ISO8061 Specifies the name of data card for calculating the business hours. Value must be url encoded. Date to be checked. Value is in ISO8061 format and must be url encoded. If date is left blank, current date will be used. Table 8. Possible HTTP parameters for the Business Day service All parameters must be url encoded for example: Business Hours -> Business+Hours T00:00: :00 -> T08%3A00%3A00.000%2B02%3A00 Example result: <?xml version="1.0" encoding="utf-8"?> <business_day> <name> Business Hours</name> <exceptional_date>good Friday 2014, 10:30-12:30</exceptional_date> <date> t00:00: :00</date> <start_time> t10:30: :00</start_time> <end_time> t12:30: :00</end_time> </business_day> See potential errors and error codes from table 14: Business day service errors 2.9 Security Encryption HTTP basic authentication sends credentials as plaintext, so it is essential to use HTTPS Authentication Efecte web API services are authenticated by using HTTP basic authentication. You have to create the credentials to Efecte to use web services. (In Permissions tree, create a role that has permissions to use Efecte Web API Services, and add one or more users to that role.) All operations are executed with the permissions of the authenticated Efecte user. These permissions specify, e.g., which templates, attributes and folders the web service user may access. 3 Web API errors This chapter offers a brief explanation for the Efecte Web API error codes. Errors may be caused, for example, by failed authorization, erroneous parameters, or a badly formatted search query.

15 15 (17) Code Explanation 1001 User not authorized to use web services. Make sure the user belongs to a role which has product permission for Efecte Web API Efecte Web API license not found. Table 9. General authorization errors Code Explanation 2001 Error in import No parameters received Invalid parameters Invalid parameters: no folderid or code found Invalid parameters: only either folderid or code is allowed Invalid parameters: only either restrictupdatetofolderid or restrictupdatetofoldercode is allowed Target folder not found Folder defined in restrictupdatetofolderid or folderrestrictupdatetofoldercode not found User not authorized to write into target folder Error in xml-import. Table 10. Import service errors

16 16 (17) Code Explanation 3001 Invalid search query. Make sure that the request includes the query parameter. The value must be a valid EQL expression Syntax error in search query. Make sure the query parameter value is valid EQL expression. For more information on EQL, refer to the document Efecte Query Language No such class found. EQL query targeted a non-existent or unsearchable class. For more information on searchable classes, refer to the document Efecte Query Language. Table11. Search service errors Code Explanation 4001 Error in data card deletion Error in deletion: No parameters received Error in deletion: No id or query received Error in deletion: invalid id parameter Error in deletion by search query Error in deletion by search: search results should only contain entities Error in deletion by search: the query found no results Error in deletion by search: Invalid query. Table 2. Delete service errors

17 17 (17) Code Explanation 5001 Error in file operations Error in file operations: missing parameters Error in file operations: invalid parameters Error in file operations: not authorized to access entity or attribute Error in file operations: not authorized to download file Error in file operations: specified file not found File upload error. Table 3. File operation errors (FileMetadata, FileDownload, FileUpload services) Code Explanation 6001 Business Hours data card name missing missing parameter Date can't be parsed. Format is (url-encoded) ISO8601. Optional date-parameter was in wrong format and cannot be parsed as date Could not find business hours data card for given name. (Value should be url-encoded). Name may be wrong, encoded badly or user may not have permissions to that data card Found more than one business hours data cards for given name. Name of the business hours datacard must be unique. Now there exist multiple data cards for the given name. Table 4. Business Day service errors

REPORTING RECLASSIFICATION RETURNS TO

REPORTING RECLASSIFICATION RETURNS TO REPORTING RECLASSIFICATION RETURNS TO THE CENTRAL BANK IN XML Explanatory information on how to report reclassification returns to the Central Bank by uploading files (in XML format) to the Online Reporting

More information

Table of Contents. Developer Manual...1

Table of Contents. Developer Manual...1 Table of Contents Developer Manual...1 API...2 API Overview...2 API Basics: URL, Methods, Return Formats, Authentication...3 API Errors...4 API Response Examples...6 Get Articles in a Category...6 Get

More information

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide

Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Connector for Microsoft SharePoint 2013, 2016 and Online Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Microsoft SharePoint 2013, 2016 and Online Connector 4 1.1 Products 4 1.2 Supported

More information

Integration Client Guide

Integration Client Guide Integration Client Guide 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property of their respective

More information

See Types of Data Supported for information about the types of files that you can import into Datameer.

See Types of Data Supported for information about the types of files that you can import into Datameer. Importing Data When you import data, you import it into a connection which is a collection of data from different sources such as various types of files and databases. See Configuring a Connection to learn

More information

HappyFox API Technical Reference

HappyFox API Technical Reference HappyFox API Technical Reference API Version 1.0 Document Version 0.1 2011, Tenmiles Corporation Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

Perceptive Matching Engine

Perceptive Matching Engine Perceptive Matching Engine Advanced Design and Setup Guide Version: 1.0.x Written by: Product Development, R&D Date: January 2018 2018 Hyland Software, Inc. and its affiliates. Table of Contents Overview...

More information

Privileged Access Integration Client Guide

Privileged Access Integration Client Guide Privileged Access Integration Client Guide 2018 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown are the property

More information

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation

Software Defined Infrastructure. FileLocker. Application Programming Interface Documentation TM Software Defined Infrastructure FileLocker Application Programming Interface Documentation Infrascale 2013 Phone: +1.877.896.3611 Web: www.infrascale.com Table of Contents API URL and Base Parameters...

More information

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B

PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B PASSWORD RBL API GUIDE API VERSION 2.10 REVISION B Table of Contents Summary... 3 Recommendations... 3 API Endpoints... 3 Method: Query... 4 GET request syntax... 4 Parameter Listing... 4 Required Parameters...

More information

also supports JSON output format for specific commands.

also supports JSON output format for specific commands. About, page 1 Using, page 2 Additional References, page 12 About On Cisco Nexus devices, command-line interfaces (CLIs) are run only on the device. improves the accessibility of these CLIs by making them

More information

Coveo Platform 6.5. Microsoft SharePoint Connector Guide

Coveo Platform 6.5. Microsoft SharePoint Connector Guide Coveo Platform 6.5 Microsoft SharePoint Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing

More information

Talend Component tgoogledrive

Talend Component tgoogledrive Talend Component tgoogledrive Purpose and procedure This component manages files on a Google Drive. The component provides these capabilities: 1. Providing only the client for other tgoogledrive components

More information

Coveo Platform 6.5. EPiServer CMS Connector Guide

Coveo Platform 6.5. EPiServer CMS Connector Guide Coveo Platform 6.5 EPiServer CMS Connector Guide Notice The content in this document represents the current view of Coveo as of the date of publication. Because Coveo continually responds to changing market

More information

Informatica Cloud Spring Microsoft Dynamics 365 for Sales Connector Guide

Informatica Cloud Spring Microsoft Dynamics 365 for Sales Connector Guide Informatica Cloud Spring 2017 Microsoft Dynamics 365 for Sales Connector Guide Informatica Cloud Microsoft Dynamics 365 for Sales Connector Guide Spring 2017 August 2018 Copyright Informatica LLC 2017,

More information

Cisco Virtual Application Cloud Segmentation Services REST API Guide, Release 6.0STV First Published: Last Updated:

Cisco Virtual Application Cloud Segmentation Services REST API Guide, Release 6.0STV First Published: Last Updated: Cisco Virtual Application Cloud Segmentation Services REST API Guide, Release 6.0STV3.1.1 First Published: 2016-10-12 Last Updated: 2016-10-12 Cisco Systems, Inc. www.cisco.com 1 Overview Contents Overview...

More information

Quick Data Configuration

Quick Data Configuration Enviance 9.1 17-1 Data Forms 17-2 Quick Data Main App Setup 17-2 Permissions 17-3 Form Configuration File 17-4 Copy Configuration 17-5 Configuration File Settings and Options 17-5 Header 17-5 Form Settings

More information

Honu. Version November 6, 2010

Honu. Version November 6, 2010 Honu Version 5.0.2 November 6, 2010 Honu is a family of languages built on top of Racket. Honu syntax resembles Java. Like Racket, however, Honu has no fixed syntax, because Honu supports extensibility

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2014 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

vfire Server Console Guide Version 1.5

vfire Server Console Guide Version 1.5 vfire Server Console Guide Table of Contents Version Details 4 Copyright 4 About this guide 6 Intended Audience 6 Standards and Conventions 6 Introduction 7 Accessing the Server Console 8 Creating a System

More information

Shadow Health as an LTI Provider

Shadow Health as an LTI Provider Shadow Health as an LTI Provider Table of Contents 1. Getting Started 2. Getting Integrated 3. Need Help? Troubleshooting Guide (includes potential error messages) Tutorial: Blackboard Learn Registering

More information

Sending Documents to Tenstreet API Guide (rev 06/2017)

Sending Documents to Tenstreet API Guide (rev 06/2017) Sending Documents to Tenstreet API Guide (rev 06/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

DBMaker. XML Tool User's Guide

DBMaker. XML Tool User's Guide DBMaker XML Tool User's Guide CASEMaker Inc./Corporate Headquarters 1680 Civic Center Drive Santa Clara, CA 95050, U.S.A. www.casemaker.com www.casemaker.com/support Copyright 1995-2003 by CASEMaker Inc.

More information

Implementing Data Masking and Data Subset with IMS Unload File Sources

Implementing Data Masking and Data Subset with IMS Unload File Sources Implementing Data Masking and Data Subset with IMS Unload File Sources 2013 Informatica Corporation. No part of this document may be reproduced or transmitted in any form, by any means (electronic, photocopying,

More information

Duplicate Detection Addon for Dynamics CRM

Duplicate Detection Addon for Dynamics CRM Duplicate Detection Addon for Dynamics CRM Contents Supported version of Dynamics CRM... 2 Trial version... 2 License Activation... 2 Default Duplicate Detection... 2 General Tab... 3 Source Filtering

More information

OSIsoft PI Custom Datasource. User Guide

OSIsoft PI Custom Datasource. User Guide OSIsoft PI Custom Datasource User Guide Nov 2015 1. Introduction... 5 Key Capabilities... 6 Retrieving PI Tag Lists... 6 Retrieving PI Tag Data... 6 Retrieving AF Elements, Metadata and Data... 7 Retrieving

More information

Level 3 Media Portal API Guide

Level 3 Media Portal API Guide Level 3 Media Portal API Guide Updated June 9, 2017 Contents Media Web Services (API)... 1 Getting Started with Media Portal APIs... 3 Using APIs... 3 Determining the Access Group ID... 3 API Interfaces...

More information

Duplicate Detection Addon for Dynamics CRM

Duplicate Detection Addon for Dynamics CRM Duplicate Detection Addon for Dynamics CRM Contents Supported version of Dynamics CRM... 2 Trial version... 2 License Activation... 2 Default Duplicate Detection... 2 General Tab... 3 Source Filtering

More information

SAS Viya 3.2: Self-Service Import

SAS Viya 3.2: Self-Service Import SAS Viya 3.2: Self-Service Import About Self-Service Import Overview of Self-Service Import Self-service import offers an easy way to bring data into the SAS Cloud Analytic Services (CAS) environment.

More information

Sending Data Updates to Tenstreet API Guide (rev 10/2017)

Sending Data Updates to Tenstreet API Guide (rev 10/2017) Sending Data Updates to Tenstreet API Guide (rev 10/2017) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy... 2 Support

More information

Pacific Northwest Water Quality Data Exchange

Pacific Northwest Water Quality Data Exchange Pacific Northwest Water Quality Data Exchange Flow Configuration Document Version 1.3 August 16, 2004 Version 1.3 prepared by: Business Systems Development Management Services Division 811 SW Sixth Avenue

More information

In this chapter we have described DM Configuration both in Policy Builder and Control Center.

In this chapter we have described DM Configuration both in Policy Builder and Control Center. In Policy Builder, page 1 In Control Center, page 15 Using REST APIs, page 37 In Policy Builder In this chapter we have described both in Policy Builder and Control Center. Note Any DM configuration changes

More information

Tresorit Active Directory Connector V2.0. User s Guide

Tresorit Active Directory Connector V2.0. User s Guide Tresorit Active Directory Connector V2.0 User s Guide Copyright by Tresorit 2018 Contents About Tresorit Active Directory Connector... 4 Features... 4 Synchronization logic... 5 About managed users and

More information

CSC Web Technologies, Spring Web Data Exchange Formats

CSC Web Technologies, Spring Web Data Exchange Formats CSC 342 - Web Technologies, Spring 2017 Web Data Exchange Formats Web Data Exchange Data exchange is the process of transforming structured data from one format to another to facilitate data sharing between

More information

Purpose: Use this document to Update a Letter Template and Add Merge Fields to a letter template.

Purpose: Use this document to Update a Letter Template and Add Merge Fields to a letter template. Updating a Letter Template and Using Merge Fields Purpose: Use this document to Update a Letter Template and Add Merge Fields to a letter template. Audience: PeopleSoft Communication Builders 1. Create

More information

HTTPS File Transfer. Specification

HTTPS File Transfer. Specification HTTPS File Transfer Specification Version 1.4 5-Apr-2017 Date Version Description 30-Aug-2010 1.0 Original Version 30-Jun-2011 1.1 Added FAQ 29-Jun-2015 1.2 ilink administration added 1-Sep-2015 1.3 Updated

More information

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide

BEAAquaLogic Enterprise Repository. Automation for Web Services Guide BEAAquaLogic Enterprise Repository Automation for Web Services Guide Version 3.0. RP1 Revised: February, 2008 Table of Contents Overview System Settings Properties for Managing WSDL- and UDDI-Related

More information

PASSWORD RBL API GUIDE API VERSION 3.10

PASSWORD RBL API GUIDE API VERSION 3.10 PASSWORD RBL API GUIDE API VERSION 3.10 Table of Contents Summary... 4 What s New in this Version... 4 Recommendations... 4 API Endpoints... 5 Production Endpoints... 5 Development Endpoints... 5 Query

More information

Oreka TR 1.4 User Manual

Oreka TR 1.4 User Manual Oreka TR 1.4 User Manual Rev. 3 August, 2012 2012 TABLE OF CONTENTS TABLE OF CONTENTS... 1 Chapter 1. Introduction... 2 1.1. What is Oreka... 2 1.2. Who should read this manual?... 2 Chapter 2. Recording

More information

API Programmer Guide for Cisco Digital Signs

API Programmer Guide for Cisco Digital Signs Cisco Digital Media Suite 5.2.0 API Programmer Guide for Cisco Digital Signs Version 0.8.5 Revised: September 13, 2010 Contents About This Guide... 2 Who Should Use This Guide... 2 Introduction to Cisco

More information

Altova CbC Reporting Solution. Quick Start

Altova CbC Reporting Solution. Quick Start All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

Mastering phpmyadmiri 3.4 for

Mastering phpmyadmiri 3.4 for Mastering phpmyadmiri 3.4 for Effective MySQL Management A complete guide to getting started with phpmyadmin 3.4 and mastering its features Marc Delisle [ t]open so 1 I community experience c PUBLISHING

More information

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager

Vector Issue Tracker and License Manager - Administrator s Guide. Configuring and Maintaining Vector Issue Tracker and License Manager Vector Issue Tracker and License Manager - Administrator s Guide Configuring and Maintaining Vector Issue Tracker and License Manager Copyright Vector Networks Limited, MetaQuest Software Inc. and NetSupport

More information

StreamServe Persuasion SP5 XMLIN

StreamServe Persuasion SP5 XMLIN StreamServe Persuasion SP5 XMLIN User Guide Rev A StreamServe Persuasion SP5 XMLIN User Guide Rev A 2001-2010 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

Managing System Administration Settings

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

More information

PI Webservices. Page 1

PI Webservices. Page 1 PI Webservices Page 1 1.1 PI Webservices 1.1.1 Description PI Web Services is a product that allows users to access PI System Data through Simple Object Access Protocol (SOAP) compliant Web services. The

More information

CollabNet Desktop - Microsoft Windows Edition

CollabNet Desktop - Microsoft Windows Edition CollabNet Desktop - Microsoft Windows Edition User Guide 2009 CollabNet Inc. CollabNet Desktop - Microsoft Windows Edition TOC 3 Contents Legal fine print...7 CollabNet, Inc. Trademark and Logos...7 Chapter

More information

Web Robots Platform. Web Robots Chrome Extension. Web Robots Portal. Web Robots Cloud

Web Robots Platform. Web Robots Chrome Extension. Web Robots Portal. Web Robots Cloud Features 2016-10-14 Table of Contents Web Robots Platform... 3 Web Robots Chrome Extension... 3 Web Robots Portal...3 Web Robots Cloud... 4 Web Robots Functionality...4 Robot Data Extraction... 4 Robot

More information

ForeScout Open Integration Module: Data Exchange Plugin

ForeScout Open Integration Module: Data Exchange Plugin ForeScout Open Integration Module: Data Exchange Plugin Version 3.2.0 Table of Contents About the Data Exchange Plugin... 4 Requirements... 4 CounterACT Software Requirements... 4 Connectivity Requirements...

More information

Configuring Databases

Configuring Databases CHAPTER 6 Configuring Databases Introduction This chapter describes how to configure the Collection Manager to work with your database. The chapter also describes how to use the database infrastructure

More information

ACS 5.x: LDAP Server Configuration Example

ACS 5.x: LDAP Server Configuration Example ACS 5.x: LDAP Server Configuration Example Document ID: 113473 Contents Introduction Prerequisites Requirements Components Used Conventions Background Information Directory Service Authentication Using

More information

Fax Broadcast Web Services

Fax Broadcast Web Services Fax Broadcast Web Services Table of Contents WEB SERVICES PRIMER... 1 WEB SERVICES... 1 WEB METHODS... 1 SOAP ENCAPSULATION... 1 DOCUMENT/LITERAL FORMAT... 1 URL ENCODING... 1 SECURE POSTING... 1 FAX BROADCAST

More information

Sage CRM 2019 R1 Release Notes. Updated: February 2019

Sage CRM 2019 R1 Release Notes. Updated: February 2019 Sage CRM 2019 R1 Release Notes Updated: February 2019 2019, The Sage Group plc or its licensors. All rights reserved. Sage, Sage logos, and Sage product and service names mentioned herein are the trademarks

More information

Configure Cisco Jabber

Configure Cisco Jabber Learn how to configure Cisco Jabber and review the configuration parameters you can set. Introduction to Client Configuration, page 1 Configure Client on Cisco Unified Communications Manager, page 2 Create

More information

ibolt V3.3 Release Notes

ibolt V3.3 Release Notes ibolt V3.3 Release Notes Welcome to ibolt V3.3, which has been designed to deliver an easy-touse, flexible, and cost-effective business integration solution. This document highlights the new and enhanced

More information

Lucid Key Server. Help Documentation.

Lucid Key Server. Help Documentation. Lucid Key Server Help Documentation www.lucidcentral.org Help for the Lucid Key Server Welcome to the Lucid Key Server, one member of the Lucid family of products. For more information on other Lucid and

More information

EDC Documentation. Release 1.0. ONS Digital

EDC Documentation. Release 1.0. ONS Digital EDC Documentation Release 1.0 ONS Digital Nov 13, 2018 Contents 1 Introduction 3 1.1 License.................................................. 3 2 JWT Profile 5 2.1 UUID Definition.............................................

More information

Report Commander 2 User Guide

Report Commander 2 User Guide Report Commander 2 User Guide Report Commander 2.5 Generated 6/26/2017 Copyright 2017 Arcana Development, LLC Note: This document is generated based on the online help. Some content may not display fully

More information

Unit 16: More Basic Activities

Unit 16: More Basic Activities Unit 16: More Basic Activities BPEL Fundamentals This is Unit #16 of the BPEL Fundamentals course. In past Units we ve looked at ActiveBPEL Designer, Workspaces and Projects, created the Process itself

More information

Workspace Administrator Help File

Workspace Administrator Help File Workspace Administrator Help File Table of Contents HotDocs Workspace Help File... 1 Getting Started with Workspace... 3 What is HotDocs Workspace?... 3 Getting Started with Workspace... 3 To access Workspace...

More information

The Direct Excel Connection plugin PRINTED MANUAL

The Direct Excel Connection plugin PRINTED MANUAL The Direct Excel Connection plugin PRINTED MANUAL Direct Excel Connection plugin All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical,

More information

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018)

Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Sending Job Requsition Data to Tenstreet API Guide (rev 09/2018) Contents Introduction... 1 Agreements and Acknowledgements... 2 Understanding the API... 2 Debugging... 2 Logging... 2 Data Accuracy...

More information

Updating Users. Updating Users CHAPTER

Updating Users. Updating Users CHAPTER CHAPTER 18 Update the existing user information that is in the database by using the following procedure:, page 18-1 Retaining Stored Values, page 18-2 Using the BAT Spreadsheet to Create a CSV Data File

More information

The Specification Xml Failed To Validate Against The Schema Whitespace

The Specification Xml Failed To Validate Against The Schema Whitespace The Specification Xml Failed To Validate Against The Schema Whitespace go-xsd - A package that loads XML Schema Definition (XSD) files. Its *makepkg* tool generates a Go package with struct type-defs to

More information

Reviewing the API Documentation

Reviewing the API Documentation About the Cisco APIC-EM API Documentation, page 1 Testing the Cisco APIC-EM APIs, page 6 About the Cisco APIC-EM API Documentation Cisco APIC-EM controller provides interactive, northbound Representational

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Updated August 28 th, 2017 This document is maintained at https://api.ramcoams.com/api/v2/ramco_api_v2_doc.pdf

Updated August 28 th, 2017 This document is maintained at https://api.ramcoams.com/api/v2/ramco_api_v2_doc.pdf Ramco API v 2.0 Updated August 28 th, 2017 This document is maintained at https://api.ramcoams.com/api/v2/ramco_api_v2_doc.pdf General Overview Intent is to provide an API that allows for discovery of

More information

Connector for OpenText Content Server Setup and Reference Guide

Connector for OpenText Content Server Setup and Reference Guide Connector for OpenText Content Server Setup and Reference Guide Published: 2018-Oct-09 Contents 1 Content Server Connector Introduction 4 1.1 Products 4 1.2 Supported features 4 2 Content Server Setup

More information

Identifying Updated Metadata and Images from a Content Provider

Identifying Updated Metadata and Images from a Content Provider University of Iowa Libraries Staff Publications 4-8-2010 Identifying Updated Metadata and Images from a Content Provider Wendy Robertson University of Iowa 2010 Wendy C Robertson Comments Includes presenter's

More information

Unit 8: Working with Actions

Unit 8: Working with Actions Unit 8: Working with Actions Questions Covered What are actions? How are actions triggered? Where can we access actions to create or edit them? How do we automate the sending of email notifications? How

More information

TAXII 2.0 Specification Pre Draft

TAXII 2.0 Specification Pre Draft TAXII 2.0 Specification Pre Draft Current Status/Intent This document serves to gain consensus on pre draft concepts of TAXII 2.0. Please feel free to poke holes and comment! Overview TAXII is an open

More information

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc.

CIOC API User Guide. Release Online Resources 3.7 / Client Tracker 3.2. Katherine Lambacher, KCL Software Solutions Inc. CIOC API User Guide Release Online Resources 3.7 / Client Tracker 3.2 Katherine Lambacher, KCL Software Solutions Inc. September 03, 2015 Contents 1 CIOC Online Resources API Introduction 1 1.1 Available

More information

PHPKB API Reference Guide

PHPKB API Reference Guide PHPKB API Reference Guide KB Administrator Fri, Apr 9, 09 User Manual 96 0 This document provides details on how to use the API available in PHPKB knowledge base management software. It acts as a reference

More information

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved

Textkernel Sourcebox. Sourcebox Interfacing Guide. Version , Textkernel BV, all rights reserved Textkernel Sourcebox Sourcebox Interfacing Guide Version 3.0.30 2011-02-28 2011, Textkernel BV, all rights reserved Sourcebox Interfacing Guide 2 Disclaimer Ownership Usage Textkernel BV provides this

More information

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015

Alloy Navigator API USER S GUIDE. Integration with External Systems. Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 USER S GUIDE Alloy Navigator API Integration with External Systems Product Version: 7.0 Document Revision: 1.0 Date: November 30, 2015 Alloy Software Incorporated 88 Park Avenue, Unit 2B, Nutley, NJ 07110

More information

P2P Programming Assignment

P2P Programming Assignment P2P Programming Assignment Overview This project is to implement a Peer-to-Peer (P2P) networking project similar to a simplified Napster. You will provide a centralized server to handle cataloging the

More information

Logi Ad Hoc Reporting System Administration Guide

Logi Ad Hoc Reporting System Administration Guide Logi Ad Hoc Reporting System Administration Guide Version 10.3 Last Updated: August 2012 Page 2 Table of Contents INTRODUCTION... 4 Target Audience... 4 Application Architecture... 5 Document Overview...

More information

DB2 Web Query (REST based) Application Extension. Usage Instructions

DB2 Web Query (REST based) Application Extension. Usage Instructions DB2 Web Query (REST based) Application Extension Usage Instructions Updated March 29, 2016 Page 1 1 Overview... 4 2 Initial Setup... 5 3 Using the Extension... 6 3.1 Modes of use... 6 3.1.1 Browse Mode...

More information

Nasuni Data API Nasuni Corporation Boston, MA

Nasuni Data API Nasuni Corporation Boston, MA Nasuni Corporation Boston, MA Introduction The Nasuni API has been available in the Nasuni Filer since September 2012 (version 4.0.1) and is in use by hundreds of mobile clients worldwide. Previously,

More information

Digital Imaging and Communications in Medicine (DICOM) Supplement 194: RESTful Services for Non-Patient Instances

Digital Imaging and Communications in Medicine (DICOM) Supplement 194: RESTful Services for Non-Patient Instances 1/20/2016 3:37 PM Supplement XXX: Non-Patient Instances RESTful Service Page 1 5 10 Digital Imaging and Communications in Medicine (DICOM) Supplement 194: RESTful Services for Non-Patient Instances 15

More information

Kernel Migrator. for SharePoint. Configuration Guide

Kernel Migrator. for SharePoint. Configuration Guide Kernel Migrator for SharePoint Table of Contents 1. System Requirements... 4 1.1 Minimum System Requirements... 4 1.2 Required Operating Systems... 4 1.3 Supported Virtual Environment... 4 1.4 Supported

More information

Aligned Elements Importer V user manual. Aligned AG Tellstrasse Zürich Phone: +41 (0)

Aligned Elements Importer V user manual. Aligned AG Tellstrasse Zürich Phone: +41 (0) Aligned Elements Importer V2.4.211.14302 user manual Aligned AG Tellstrasse 13 8004 Zürich Phone: +41 (0)44 312 50 20 www.aligned.ch info@aligned.ch Table of Contents 1.1 Introduction...3 1.2 Installation...3

More information

ForeScout CounterACT. Configuration Guide. Version 3.4

ForeScout CounterACT. Configuration Guide. Version 3.4 ForeScout CounterACT Open Integration Module: Data Exchange Version 3.4 Table of Contents About the Data Exchange Module... 4 About Support for Dual Stack Environments... 4 Requirements... 4 CounterACT

More information

Main title goes here EDT Hub API Specification v2.9

Main title goes here EDT Hub API Specification v2.9 Main title goes here EDT Hub API Specification v2.9 Prepared by: Philip Young, PCTI IS2 Folder: Internal\Technical\Products\EDT Date: Monday, 24 September 2007 Revision No: 2.9 (EDT Hub version 800800

More information

Series 6 Technical Admin Guide Page 1

Series 6 Technical Admin Guide Page 1 Series 6 Technical Admin Guide Page 1 TABLE OF CONTENTS PRODUCT REGISTRATION... 6 Free Trial Registration and the Wizard...7 How the Trial Works...8 Register Invu Document Management...8 Privileges for

More information

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!...

Introduction & Basics! Technical Foundation! Authentication! Obtaining a token!... 4 Using the token! Working with notes!... Simplenote API2 Documentation v2.1.3: (April 18, 2011). Recent documentation changes are listed on the last page. Contents Introduction & Basics!... 3 Technical Foundation!... 3 Authentication!... 4 Obtaining

More information

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

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

More information

MOTOR Data Management System Users Guide

MOTOR Data Management System Users Guide MOTOR Data Management System Users Guide Version 1.0 November 24, 2003 Prepared by the Collaborative Studies Coordinating Center TABLE OF CONTENTS PAGE 1 MOTOR DMS... 4 2 OVERVIEW OF DATA COLLECTION...

More information

Configuring Databases

Configuring Databases CHAPTER 6 Configuring Databases Revised: August 21, 2012, Introduction This chapter describes how to configure the Cisco Service Control Management Suite (SCMS) Collection Manager (CM) to work with your

More information

IBM Security Access Manager for Mobile Version Developer topics

IBM Security Access Manager for Mobile Version Developer topics IBM Security Access Manager for Mobile Version 8.0.0.5 Developer topics IBM Security Access Manager for Mobile Version 8.0.0.5 Developer topics ii IBM Security Access Manager for Mobile Version 8.0.0.5:

More information

2 Spreadsheet Considerations 3 Zip Code and... Tax ID Issues 4 Using The Format... Cells Dialog 5 Creating The Source... File

2 Spreadsheet Considerations 3 Zip Code and... Tax ID Issues 4 Using The Format... Cells Dialog 5 Creating The Source... File Contents I Table of Contents Part 1 Introduction 1 Part 2 Importing from Microsoft Excel 1 1 Overview... 1 2 Spreadsheet Considerations... 1 3 Zip Code and... Tax ID Issues 2 4 Using The Format... Cells

More information

Question No : 1 You install Microsoft Dynamics CRM on-premises. The Microsoft Dynamics CRM environment must have a Uniform Resource Locator (URL) that

Question No : 1 You install Microsoft Dynamics CRM on-premises. The Microsoft Dynamics CRM environment must have a Uniform Resource Locator (URL) that Vendor: Microsoft Exam Code: MB2-702 Exam Name: Microsoft Dynamics CRM 2013 Deployment Version: Demo Question No : 1 You install Microsoft Dynamics CRM on-premises. The Microsoft Dynamics CRM environment

More information

Transform AP for EnterpriseOne User's Guide

Transform AP for EnterpriseOne User's Guide Transform AP for EnterpriseOne User's Guide Transform AP for EnterpriseOne User s Guide Version 1.0 Copyright 2008 Bottomline Technologies, Inc. All rights reserved. Information in this document is subject

More information

Business On Line File Gateway Guide

Business On Line File Gateway Guide Business On Line File Gateway Guide This document is published by Bank of Ireland, and both it, and its contents, are the property of Bank of Ireland. This document may not be reproduced or further distributed,

More information

CGI Architecture Diagram. Web browser takes response from web server and displays either the received file or error message.

CGI Architecture Diagram. Web browser takes response from web server and displays either the received file or error message. What is CGI? The Common Gateway Interface (CGI) is a set of standards that define how information is exchanged between the web server and a custom script. is a standard for external gateway programs to

More information

API Reference (Contract Management)

API Reference (Contract Management) FUJITSU Cloud Service K5 IaaS API Reference (Contract Management) Version 1.5 FUJITSU LIMITED All Rights Reserved, Copyright Fujitsu Limited 2016 K5IA-DC-M-001-001E Preface Structure of the manuals Manual

More information

Altova CbC Reporting Solution. Quick Start

Altova CbC Reporting Solution. Quick Start All rights reserved. No parts of this work may be reproduced in any form or by any means - graphic, electronic, or mechanical, including photocopying, recording, taping, or information storage and retrieval

More information

Creating Accounts and Test Registrations Using Batch Load

Creating Accounts and Test Registrations Using Batch Load Quick Start Guide Creating Accounts and Test Registrations Using Batch Load Document Purpose This document contains information used by site administrators to create ACT WorkKeys online accounts and test

More information

Duplicate Detection addon for Dynamics CRM by Cowia

Duplicate Detection addon for Dynamics CRM by Cowia Duplicate Detection addon for Dynamics CRM by Cowia Table of Contents Supported versions... 2 Trial... 2 License Activation... 2 YouTube Video... 3 Setup with example... 3 1. First step is to disable the

More information