ComSignTrust Signer-1 SignFlow Integration API Document

Size: px
Start display at page:

Download "ComSignTrust Signer-1 SignFlow Integration API Document"

Transcription

1 ComSignTrust Signer-1 SignFlow Integration API Document Version: 1.8 Date: 10/10/2013 ComSignTrust TM LTD All rights reserved Version Writer Date Review by Version 0.9 Alex Raitskin, Daniel Gorelic Yoni Stephan Version 1.0 Alex Raitskin Yoni Stephan Version 1.3 Alex Raitskin Yoni Stephan Version 1.5 Alex Raitskin Yoni Stephan Version 1.8 Alex Raitskin Yoni Stephan Signer-1 SignFlow Integration API Page 1

2 Contents 1. General Terms General Flow Transaction Setup Signing Page Transaction Query (Optional) Signer-1 SignFlow Integration API Page 2

3 1. General 1.1 ComSignTrust Redirect module (SignFlow) enables users to perform digital signing operations without having to deal with details of signature generation. 1.2 The idea is based on securely receiving transaction data from the EA, redirecting users to dynamically constructed web page, and then securely receiving the signature operation results (success/failure). 1.3 This document will outline the API the EA has to implement for interacting with the ComSignTrust Redirect module. 2. Terms 2.1 DSP Digital signature plugin. 2.2 EA Enterprise System (ERP, CRM, BPM, Bespoke system)/website (SharePoint, portals) that performs signature requests. 2.3 End User Digital Signature Owner user who performs online digital signing in the EA application/site. 3. General Flow 3.1 EA, using XML over HTTP, will transfer the reference of the document or the document itself to Signer-1 signing portal. 3.2 The EA redirects the user to the Signer1 web application where the user has to authenticate and has to enter required data in order to review and sign the document. 3.3 After a successful authentication and user approval of the document, the document is signed and the user is either redirected back to the EA or a predefined callback is triggered to notify of the signing transaction completion. 3.4 If the process is disrupted or abandoned for any reason - the transaction ID can be used to verify its current state. 3.5 It is expected that the e-signature (either Advanced or Qualified) is stored in the Signer1 according to the ETSI regulations and used in the background while signature is needed, allowing the signer to use his HSM PIN (Personal Identification Number of the user in the HSM). 3.6 The signed and sealed document will be returned to the EA. Signer-1 SignFlow Integration API Page 3

4 3.7 Signing Process Diagram: 4. Transaction Setup 4.1 The following is the XML that should be posted as the SIG_INIT request variable (via https or web service). 4.2 For posting the request please refer to appendix A. 4.3 When sending this request, a transaction is set up in the system background and a URL is retrieved, in the page opened when accessing the URL, the digital signature owner is adding required transaction information (card number, exp date, etc'. Signer-1 SignFlow Integration API Page 4

5 4.6 XML Request <request> <language>eng</language> <command>docreatesigpage</command> <requestid> </requestid> <version>1</version> <docreatesigpage> <branding> <toptitle>please sign this NDA document.</toptitle> <bottomtitle>for support please call </bottomTitle> <logo> <url>logo.jpg</url> </logo> </branding> <sessiondurationlimit>120</sessiondurationlimit> <!-- seconds --> <signerprofileid>signer_ </signerprofileid> <documenttype>pdf</documenttype> <PDF> <source> <uncpath>\\shared\nda.pdf</uncpath> <!-- <encodedfile></encodedfile> --> </source> <signaturefields> <sigfield name="sig1" isrequired="true"> <rect>0,0,100,100</rect> <page>1</page> <alg>rsa-sha256</alg> </sigfield> </signaturefields> </PDF> <enablepreview>1</enablepreview> <enabledownload>1</enabledownload> <signaturetype>qualified</signaturetype> <qualified mechanism="remote"> <qauthenticationmethodfactorone>sms</qauthenticationmethodfactorone> <qauthenticationmethodfactortwo>pincode</qauthenticationmethodfactortwo> </qualified> <! <advanced isadhoc="false"> <adhocdn></adhocdn> <aauthenticationmethod>pincode</aauthenticationmethod> </advanced>--> <return> <onsuccess>success.aspx</onsuccess> <onerror>error.aspx</onerror> </return> <customdata> </customdata> </docreatesigpage> </request> Signer-1 SignFlow Integration API Page 5

6 4.7 Request Tags Most of the tags are fixed values, and should be submitted exactly as in the example above The following are the variable tags details: Tag Name Type Value Value Mandatory language AlphaNumeric ENG FRE RUS SPN Yes Description Specifies the language of the dynamically constructed signing page command AlphaNumeric docreatesigpage Yes Type of page to be built use "docreatesigpage" for signing operation. requestid AlphaNumeric Guid Yes A unique GUID used to identify and monitor the signing operation. version AlphaNumeric 1 Yes branding No The custom texts and logo to be set on the signing page. sessiondurationlimit Integer Yes Time before the generated signing page becomes invalid. signerprofileid AlphaNumeric Yes This is the unique identifier of the user's Signer-1 SignFlow Integration API Page 6

7 Tag Name Type Value Value Mandatory documenttype AlphaNumeric PDF DOCX XLSX PPTX TIFF source [tag] AlphaNumeric (tag) tag should be used for archival and logging reference Yes Yes Description digital certificate defined during the enrollment phase. Indicates a request for MPI page and transaction setup The reference to the document to be signed. Can be used with either uncpath or encodedfile mutually exclusive. uncpath AlphaNumeric No Path to the document on a shared folder. encodedfile AlphaNumeric No Base64 encoded document signaturefields Yes For PDF only. List of sigfield elements. sigfield Yes For PDF only. Contains the description of the signature field to be signed. If the field does not exist it will be created in the position defined by the rect and page elements. The "alg" element describes what type of algorithm Signer-1 SignFlow Integration API Page 7

8 Tag Name Type Value Value Mandatory Description suite to use enablepreview Integer 1 0 enabledownload Integer 1 0 Yes Yes The user will be able to preview the document on the signing page if such capability is available for the selected type of document. A hyperlink should be available to the user to download the file and view it locally on his desktop. signaturetype AlphaNumeric qualified advanced qualified qauthenticationmethodfactorone AlphaNumeric qauthenticationmethodfactortwo AlphaNumeric OTP SMS PINCODE PKI OTP SMS PINCODE PKI advanced [adhoc] Boolean true false Yes Yes if qualified signature is selected. Yes if qualified signature is selected. Yes if qualified signature is selected. Yes if advanced signature is selected. adhocdn Alphanumeric Yes if advanced For a remote qualified signature two factor authentication is required along the PIN to the remote cryptographic device. PKI for software or smart card SSL mutual authentication. Set adhoc to true if the digital signature should be created for the current transaction. The distinguished name of the Signer-1 SignFlow Integration API Page 8

9 Tag Name Type Value Value Mandatory aauthenticationmethod OTP SMS PINCODE PKI INTEGRATED signature is selected and adhoc attribute is set to "true". Yes if advanced signature is selected. Description dynamically created certificate. INTEGRATED for Active directory authentication. return Yes Specifies the return page to which the signing portal should redirect in case of success of failure. onsuccess onerror customdata Specifies the return page to which the signing portal should redirect in case of success. Specifies the return page to which the signing portal should redirect in case of failure. Additional XML passed in purpose to meet specific EA requirements and customizations. Signer-1 SignFlow Integration API Page 9

10 4.8 XML Response <ashrait> <?xml version="1.0" encoding="utf-8"?> <response> <requestid> </requestid> <requeststatus>approved</requeststatus> <errorcode/> <transactionid> </transactionid> <redirecturl> <customdata> </customdata> </response> Signer-1 SignFlow Integration API Page 10

11 4.9 Response Tags The response has many tags that are relevant to different ComSignTrust extended functionality capabilities The following are the necessary tags for integration: Tag Name Type Value Description requestid AlphaNumeric GUID Defined In the request XML. requeststatus AlphaNumeric Success Error errorcode AlphaNumeric One of the error codes defined in Appendix B. transactionid AlphaNumeric GUID Used in the query XML to check the current status of the signing operation. redirecturl AlphaNumeric URL A temporary URL to where the EA should redirect the user. customdata Additional XML returned in purpose to meet specific EA requirements and customizations. Signer-1 SignFlow Integration API Page 11

12 5. Signing Page 5.1 Once the transaction setup was performed, the EA now holds the temporary signature page URL retrieved from the response (redirecturl tag). 5.2 Once retrieved, the EA should redirect the user to the signing page. 5.3 A retrieved signing page may look in this form (server DNS name may change according to the dedicated hosted page server): or specifically like this: Signer-1 SignFlow Integration API Page 12

13 5.4 Signing Page Once redirected to the signing page, the default page looks like this: When submitted (Sign/Reject button is pressed) the actual operation is performed When done, the user is redirected back to a predefined successurl or errorurl on the EA web site (predefined landing pages). Signer-1 SignFlow Integration API Page 13

14 5.4.4 The redirection to the landing pages will contain additional parameters that specify the request/transaction status. 5.5 Success Page Success Page example: Additional OK Page variable (URL request string variables): Field Name Value Description uniqueid custom Unique transaction ID The unique transaction ID as EA gave on transaction creation Defined by the EA customizations. 5.6 Error Page Error Screen example: Additional Error Page variables (URL request string variables): In case of error (onerror redirection) additional two parameters will be added: ErrorCode and ErrorText as well Addition Error page GET variables: Field Name Value Description uniqueid custom Unique transaction ID The unique transaction ID as EA gave on transaction creation Defined by the EA customizations. errorcode Error Code Numeric error code errortext Error Text Error Description Signer-1 SignFlow Integration API Page 14

15 6. Transaction Query (Optional) 8.1 An additional feature ComSignTrust offers is querying the signing portal for the full signing operation details. 8.2 The can be optionally implemented by the EA. Of course, the query is using the same ComSignTrust HTTPS Post or Web service mechanism, using the following XML to perform the transaction. 8.3 XML Request <request> <version>1</version> <command>doquery</command> <doquery> <transactionid> </transactionid> <expecteddocumentresponse> </expecteddocumentresponse> </doquery> </request> 8.4 Request Tags The following are the necessary tags for querying the system: Description Unique transactionid returned during the initiation of the signature page. Describes how the signed document should be returned. Value Mandatory Value Type Tag Name Yes GUID AlphaNumeric transactionid encodedfile uncpath AlphaNumeric expecteddocumentresponse 8.5 XML Response <response> <transactionid> </transactionid> <signaturestatus>success</signaturestatus> <errorcode/> <failuredescription/> <encodedfile/> <uncpath/> <datetime/> <rejectreason/> </response> Signer-1 SignFlow Integration API Page 15

16 8.6 Response Tags The following are the necessary tags for integration: Tag Name Type Value Description transactionid AlphaNumeric GUID Unique transactionid returned during the initiation of the signature page. signaturestatus AlphaNumeric Success Pending Failure errorcode AlphaNumeric One of the error codes defined in Appendix B. Tells if the signing operation is completed successfully, pending or failed. For failure additional description and code is provided in the below tags. failuredescription AlphaNumeric encodedfile AlphaNumeric Base64 encoded file if that option was selected. uncpath AlphaNumeric Shared path to the signed file. datetime AlphaNumeric TimeDate Time of operation completion. rejectreason AlphaNumeric Rejection comment as was filled by the user. Appendix A: Posting Web Service/HTTPS Request 1. Signer-1 SignFlow Integration API Page 16

17 HTTPS Post request 1.1 This request is used for acquiring the signing page URL. 1.2 The merchant system should post a HTTPS POST request for sending the transaction. 1.3 Always use the server name when accessing the web service (which should be the server and the certificate name) this preventing certificate authentication errors. 1.4 Accessing the HTTPS interface is via the following URL: Test server name will be sent in the Signer - 1 integration documentation. 1.5 Request Request Parameters (submitted via HTTPS Post): SIG_INIT =<transaction details according to XML API standards detailed in the following sections> 1.6 Response The response is formatted as a single string containing the XML response. Appendix B: Additional Error Codes 1. Error Codes Message Error Code Success 000 Document rejected by user 982 Invalid request or post parameters 983 Certificate is Expired 984 Certificate is revoked 985 PIN locked 986 Internal Server Error 987 Transaction has expired (timeout) 988 Transaction already submitted 989 Transaction not found 990 Document Error 991 Signer-1 SignFlow Integration API Page 17

18 Connection Error 992 Document does not exist 993 Signer-1 SignFlow Integration API Page 18

CERTIFICATE POLICY CIGNA PKI Certificates

CERTIFICATE POLICY CIGNA PKI Certificates CERTIFICATE POLICY CIGNA PKI Certificates Version: 1.1 Effective Date: August 7, 2001 a Copyright 2001 CIGNA 1. Introduction...3 1.1 Important Note for Relying Parties... 3 1.2 Policy Identification...

More information

Integration Guide. LoginTC

Integration Guide. LoginTC Integration Guide LoginTC Revised: 21 November 2016 About This Guide Guide Type Documented Integration WatchGuard or a Technology Partner has provided documentation demonstrating integration. Guide Details

More information

Entrust Cloud Enterprise. Enrollment Guide

Entrust Cloud Enterprise. Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Entrust Cloud Enterprise Enrollment Guide Document issue: 1.0 Copyright 2016 Entrust. All rights reserved. Entrust is a trademark or a registered trademark of

More information

Configuring SSL CHAPTER

Configuring SSL CHAPTER 7 CHAPTER This chapter describes the steps required to configure your ACE appliance as a virtual Secure Sockets Layer (SSL) server for SSL initiation or termination. The topics included in this section

More information

Microsoft Dynamics CRM Integration with Bomgar Remote Support

Microsoft Dynamics CRM Integration with Bomgar Remote Support Microsoft Dynamics CRM Integration with Bomgar Remote Support 2017 Bomgar Corporation. All rights reserved worldwide. BOMGAR and the BOMGAR logo are trademarks of Bomgar Corporation; other trademarks shown

More information

JIRA Integration Guide

JIRA Integration Guide JIRA Integration Guide 2018 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

Electronic Seal Administrator Guide Published:December 27, 2017

Electronic Seal Administrator Guide Published:December 27, 2017 Electronic Seal Administrator Guide Published:December 27, 2017 Copyright Version 4.25.2.3 Copyright 2003-2018 DocuSign, Inc. All rights reserved. For information about DocuSign trademarks, copyrights

More information

VAM. Epic epcs Value-Added Module (VAM) Deployment Guide

VAM. Epic epcs Value-Added Module (VAM) Deployment Guide VAM Epic epcs Value-Added Module (VAM) Deployment Guide Copyright Information 2018. SecureAuth is a registered trademark of SecureAuth Corporation. SecureAuth s IdP software, appliances, and other products

More information

Microsoft Dynamics CRM Integration with Remote Support

Microsoft Dynamics CRM Integration with Remote Support Microsoft Dynamics CRM Integration with Remote Support 2003-2018 BeyondTrust, Inc. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust, Inc. Other trademarks are the property

More information

Authentication Manager Self Service Password Request Administrator s Guide

Authentication Manager Self Service Password Request Administrator s Guide Authentication Manager Self Service Password Request 9.0.2 Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described

More information

MyFloridaNet-2 (MFN-2) Customer Portal/Password Management Reference Guide

MyFloridaNet-2 (MFN-2) Customer Portal/Password Management Reference Guide MyFloridaNet-2 (MFN-2) Customer Portal/Password Management Reference Guide REVISION RECORDS REVISION DATE DESCRIPTION 0 27 September 2017 Initial Submittal. 1 06 October 2017 Second Submittal. - 17 October

More information

DigiCert User Guide (GÉANT)

DigiCert User Guide (GÉANT) DigiCert User Guide (GÉANT) Version 8.3 Table of Contents 1 User Management... 10 1.1 Roles and Account Access... 10 1.1.1 Administrator Role... 10 1.1.2 User Role... 10 1.1.3 EV Verified User... 10 1.1.4

More information

BMC FootPrints 12 Integration with Remote Support

BMC FootPrints 12 Integration with Remote Support BMC FootPrints 12 Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are

More information

Configuring SSL. SSL Overview CHAPTER

Configuring SSL. SSL Overview CHAPTER CHAPTER 8 Date: 4/23/09 This topic describes the steps required to configure your ACE (both the ACE module and the ACE appliance) as a virtual Secure Sockets Layer (SSL) server for SSL initiation or termination.

More information

Configuring SSL. SSL Overview CHAPTER

Configuring SSL. SSL Overview CHAPTER 7 CHAPTER This topic describes the steps required to configure your ACE appliance as a virtual Secure Sockets Layer (SSL) server for SSL initiation or termination. The topics included in this section are:

More information

SSL Certificates Certificate Policy (CP)

SSL Certificates Certificate Policy (CP) SSL Certificates Last Revision Date: February 26, 2015 Version 1.0 Revisions Version Date Description of changes Author s Name Draft 17 Jan 2011 Initial Release (Draft) Ivo Vitorino 1.0 26 Feb 2015 Full

More information

MCB Gateway. 1 Introduction. 2 Change history. 3 Table of contents

MCB Gateway. 1 Introduction. 2 Change history. 3 Table of contents MCB Gateway 1 Introduction This document describes the communication interface (API) of our Mobile Content Billing (MCB/DB) gateway called FuturePay. This technical document is meant for system engineers

More information

Hewlett Packard Enterprise Smart Quote

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

More information

USER GUIDE WBBPE ONLINE APPLICATION SUBMISSION SYSTEM FOR TET EXAM (PRIMARY)

USER GUIDE WBBPE ONLINE APPLICATION SUBMISSION SYSTEM FOR TET EXAM (PRIMARY) USER GUIDE WBBPE ONLINE APPLICATION SUBMISSION SYSTEM FOR TET EXAM -2017 (PRIMARY) Creation Date: June26, 2017 Last Updated: Oct 09, 2017 Control Number: UD.DT.01 Version: 1 Approvals: Contents Read This

More information

VSP16. Venafi Security Professional 16 Course 04 April 2016

VSP16. Venafi Security Professional 16 Course 04 April 2016 VSP16 Venafi Security Professional 16 Course 04 April 2016 VSP16 Prerequisites Course intended for: IT Professionals who interact with Digital Certificates Also appropriate for: Enterprise Security Officers

More information

SafeNet Authentication Manager

SafeNet Authentication Manager SafeNet Authentication Manager Version 8.0 Rev A User s Guide Copyright 2010 SafeNet, Inc. All rights reserved. All attempts have been made to make the information in this document complete and accurate.

More information

Sphinx Feature List. Summary. Windows Logon Features. Card-secured logon to Windows. End-user managed Windows logon data

Sphinx Feature List. Summary. Windows Logon Features. Card-secured logon to Windows. End-user managed Windows logon data Sphinx List Summary Version Order # Included software components Sphinx Enterprise S-30 Install Sphinx Logon Manager software and desktop card readers on end-user computers. Pre-configured Sphinx CardMaker

More information

DocVerify Document Library Tutorial.

DocVerify Document Library Tutorial. DocVerify Document Library Tutorial www.docverify.com Table of Contents Step 1 Create a New PDF Document OR Existing PDF:... 4 Step 2 Click Add New :... 4 Step 3 Add New Library Document Button:... 5 Step

More information

McAfee Next Generation Firewall 5.8.0

McAfee Next Generation Firewall 5.8.0 Reference Guide Revision A McAfee Next Generation Firewall 5.8.0 SMC API This guide gives an overview of the Security Management Center (SMC) application programming interface (API). It describes how to

More information

GSA QMAC. Transportation Service Provider (TSP) TransPort Integrator User Guide. TransPort Integrator Service. Version 3.0

GSA QMAC. Transportation Service Provider (TSP) TransPort Integrator User Guide. TransPort Integrator Service. Version 3.0 GSA QMAC TransPort Integrator Service Transportation Service Provider (TSP) TransPort Integrator User Guide Version 3.0 Change Log Version # Date of Change Section Description of Change Changed By 1.0

More information

EasiShare ios User Guide

EasiShare ios User Guide Copyright 06 Inspire-Tech Pte Ltd. All Rights Reserved. Page of 44 Copyright 06 by Inspire-Tech Pte Ltd. All rights reserved. All trademarks or registered trademarks mentioned in this document are properties

More information

Schneider Electric Floating License Manager

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

More information

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication.

Requests that are forwarded via redirects by a customer's web browser are authenticated via browser API authentication. Poplatek Server API Version: 2016-06-22.2 Quick links Browser API Pay REST API Get Transaction Status Cancel Refund Settlement report Changes 2016-06-22: Document sandbox URL endpoints. Small miscellaneous

More information

Oracle Eloqua Legacy Authenticated Microsites and Contact Users. Configuration Guide

Oracle Eloqua Legacy Authenticated Microsites and Contact Users. Configuration Guide Oracle Eloqua Legacy Authenticated Microsites and Contact Users Configuration Guide 2019 Oracle Corporation. All rights reserved 04-Jan-2019 Contents 1 Authenticated microsites 3 2 Creating authenticated

More information

ideal QR - Merchant Implementation Guidelines (EN)

ideal QR - Merchant Implementation Guidelines (EN) ideal QR - Merchant Implementation Guidelines (EN) Version: 1.5 Date: 19-02-2018 Copyright Currence ideal B.V. All rights reserved. Page 1 of 16 Versions... version Adjustments 1.0 First version for extended

More information

VMware AirWatch Certificate Authentication for EAS with NDES-MSCEP

VMware AirWatch Certificate Authentication for EAS with NDES-MSCEP VMware AirWatch Certificate Authentication for EAS with NDES-MSCEP For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

DigiCert User Guide. Version 6.4

DigiCert User Guide. Version 6.4 DigiCert User Guide Version 6.4 Table of Contents 1 User Management... 9 1.1 Roles and Account Access... 9 1.1.1 Administrator Role... 9 1.1.2 User Role... 9 1.1.3 EV Verified User... 9 1.1.4 CS Verified

More information

DigiCert User Guide (GÉANT)

DigiCert User Guide (GÉANT) DigiCert User Guide (GÉANT) Version 6.8 Table of Contents 1 User Management... 10 1.1 Roles and Account Access... 10 1.1.1 Administrator Role... 10 1.1.2 User Role... 10 1.1.3 EV Verified User... 10 1.1.4

More information

ForeScout Extended Module for VMware AirWatch MDM

ForeScout Extended Module for VMware AirWatch MDM ForeScout Extended Module for VMware AirWatch MDM Version 1.7.2 Table of Contents About the AirWatch MDM Integration... 4 Additional AirWatch Documentation... 4 About this Module... 4 How it Works... 5

More information

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide

TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide TIBCO Managed File Transfer Internet Server Transfer and File Share Clients User's Guide Software Release 8.1 March 2018 Two-Second Advantage 2 Important Information SOME TIBCO SOFTWARE EMBEDS OR BUNDLES

More information

Schneider Electric License Manager

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

More information

MyFloridaNet-2 (MFN-2) Customer Portal/ Password Management/ VPN Reference Guide

MyFloridaNet-2 (MFN-2) Customer Portal/ Password Management/ VPN Reference Guide MyFloridaNet-2 (MFN-2) Customer Portal/ Password Management/ VPN Reference Guide i VISION RECORDS REVISION DATE DESCRIPTION 0 27 September 2017 Initial Submittal. 1 Second Submittal. ii TABLE OF CONTENTS

More information

Future Pay MCB API. Version

Future Pay MCB API. Version Future Pay MCB API Version 03 2014-02-11 Contents Contents... 2 1. Document history... 3 2. Scope and intended audience... 3 3. Communication with Future Pay... 4 3.1 overview... 4 3.2 Request... 6 3.3

More information

CA Service Desk Integration with Remote Support

CA Service Desk Integration with Remote Support CA Service Desk Integration with Remote Support 2003-2019 BeyondTrust Corporation. All Rights Reserved. BEYONDTRUST, its logo, and JUMP are trademarks of BeyondTrust Corporation. Other trademarks are the

More information

Integration Architecture Of SDMS

Integration Architecture Of SDMS Integration Architecture Of SDMS 20 May 2017 Version 1.0 (Rakesh Ranjan, Consultant-IT) Table of Content 1 ABOUT SDMS...2 2 OBJECTIVE & STRUCTURE OF THIS DOCUMENT...2 3 TRANSACTIONAL SERVICES...3 3.1 HIGH

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

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

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

VSP18 Venafi Security Professional

VSP18 Venafi Security Professional VSP18 Venafi Security Professional 13 April 2018 2018 Venafi. All Rights Reserved. 1 VSP18 Prerequisites Course intended for: IT Professionals who interact with Digital Certificates Also appropriate for:

More information

ISS INDIA Active Directory Self Password Management Solution ISS Facility Services India PVT.LTD.

ISS INDIA Active Directory Self Password Management Solution ISS Facility Services India PVT.LTD. ISS INDIA Active Directory Self Password Management Solution ISS Facility Services India PVT.LTD. Page 1 of 14 Contents 1. OVERVIEW... 3 2. USER REGISTRATION PROCESS... 3 STEP 1: USER LOGIN... 3 STEP 2:

More information

Step-by-step installation guide for monitoring untrusted servers using Operations Manager

Step-by-step installation guide for monitoring untrusted servers using Operations Manager Step-by-step installation guide for monitoring untrusted servers using Operations Manager Most of the time through Operations Manager, you may require to monitor servers and clients that are located outside

More information

Dell License Manager Version 1.2 User s Guide

Dell License Manager Version 1.2 User s Guide Dell License Manager Version 1.2 User s Guide Notes, Cautions, and Warnings NOTE: A NOTE indicates important information that helps you make better use of your computer. CAUTION: A CAUTION indicates either

More information

Colligo Briefcase 3.4

Colligo Briefcase 3.4 3.4 Enterprise, Pro, and Lite Editions User Guide ipad Table of Contents Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo Briefcase Lite...

More information

Certificate Enrollment- and Signing Services for the Cloud. A behind-the-scenes presentation of a successful cooperation between

Certificate Enrollment- and Signing Services for the Cloud. A behind-the-scenes presentation of a successful cooperation between Certificate Enrollment- and Signing Services for the Cloud A behind-the-scenes presentation of a successful cooperation between Introduction Based on our experience and the request from the market we would

More information

Colligo Briefcase 3.4

Colligo Briefcase 3.4 3.4 Enterprise, Pro, and Lite Editions User Guide iphone and ipod Touch Table of Contents Introduction... 4 Key Features... 4 Benefits... 4 Devices Supported... 5 SharePoint Platforms Supported... 5 Colligo

More information

INSTRUCTION FOR OPERATION WITH DESKTOP SIGNER

INSTRUCTION FOR OPERATION WITH DESKTOP SIGNER INSTRUCTION FOR OPERATION WITH DESKTOP SIGNER Version 1.50, February 2017 B-Trust Instruction Page 1 TABLE OF CONTENTS I. About the Program... 3 II. System requirements... 3 III. Installation... 4 IV.

More information

Desktop Authenticator Guide. SurePassID Authentication Server 2017

Desktop Authenticator Guide. SurePassID Authentication Server 2017 Desktop Authenticator Guide SurePassID Authentication Server 2017 SurePassID Desktop Authenticator Guide Revision: 01 10 2017 You can find the most up-to-date technical documentation at: http://www.surepassid.com

More information

Cloud Access Manager Configuration Guide

Cloud Access Manager Configuration Guide Cloud Access Manager 8.1.3 Configuration Guide Copyright 2017 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software described in this guide

More information

Novell Identity Manager

Novell Identity Manager Role Mapping Administrator User Guide AUTHORIZED DOCUMENTATION Novell Identity Manager 1.0 August 28, 2009 www.novell.com Novell Identity Manager Role Mapping Administrator 1.0 User GuideNovell Identity

More information

Vingd API for PHP Documentation

Vingd API for PHP Documentation Vingd API for PHP Documentation Release 1.7 Radomir Stevanovic, Vingd Inc. Jul 17, 2017 Contents 1 Vingd 3 1.1 Vingd API for PHP.......................................... 3 1.2 Installation..............................................

More information

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS)

UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) UC for Enterprise (UCE) NEC Centralized Authentication Service (NEC CAS) Installation Guide NEC NEC Corporation October 2010 NDA-30362, Revision 15 Liability Disclaimer NEC Corporation reserves the right

More information

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide

One Identity Starling Two-Factor HTTP Module 2.1. Administration Guide One Identity Starling Two-Factor HTTP Module 2.1 Administration Guide Copyright 2018 One Identity LLC. ALL RIGHTS RESERVED. This guide contains proprietary information protected by copyright. The software

More information

Hardware One-Time Password User Guide August 2018

Hardware One-Time Password User Guide August 2018 Hardware One-Time Password User Guide August 2018 Copyright 2017 Exostar LLC. All rights reserved 1 Version Impacts Date Owner Hardware One-Time Password User Guide Image updates August 2018 M. Williams

More information

PassBy[ME] API Documentation

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

More information

VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide

VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide VeriSign Managed PKI for SSL and Symantec Protection Center Integration Guide The software described in this book is furnished

More information

Export out report results in multiple formats like PDF, Excel, Print, , etc.

Export out report results in multiple formats like PDF, Excel, Print,  , etc. Edition Comparison DOCSVAULT Docsvault is full of features that can help small businesses and large enterprises go paperless. The feature matrix below displays Docsvault s abilities for its Enterprise

More information

Identity Manager 4 Package Manager Lab

Identity Manager 4 Package Manager Lab Identity Manager 4 Package Manager Lab NIQ16 Novell Training Services ATT LIVE 2012 LAS VEGAS www.novell.com Legal Notices Novell, Inc., makes no representations or warranties with respect to the contents

More information

SurePassID Local Agent Guide SurePassID Authentication Server 2016

SurePassID Local Agent Guide SurePassID Authentication Server 2016 SurePassID Local Agent Guide SurePassID Authentication Server 2016 SurePassID Local Agent Guide Revision: 03 10 2016 You can find the most up-to-date technical documentation at: http://www.surepassid.com

More information

Streamline Certificate Request Processes. Certificate Enrollment

Streamline Certificate Request Processes. Certificate Enrollment Streamline Certificate Request Processes Certificate Enrollment Contents At the end of this section, you will be able to: Configure TPP to allow users to request new certificates through Aperture Policy

More information

Forescout. eyeextend for IBM MaaS360. Configuration Guide. Version 1.9

Forescout. eyeextend for IBM MaaS360. Configuration Guide. Version 1.9 Forescout Version 1.9 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

Forescout. eyeextend for VMware AirWatch. Configuration Guide. Version 1.9

Forescout. eyeextend for VMware AirWatch. Configuration Guide. Version 1.9 Forescout Version 1.9 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

Signicat Connector for Java Version 2.6. Document version 3

Signicat Connector for Java Version 2.6. Document version 3 Signicat Connector for Java Version 2.6 Document version 3 About this document Purpose Target This document is a guideline for using Signicat Connector for Java. Signicat Connector for Java is a client

More information

CoSign Desktop Version 5.2

CoSign Desktop Version 5.2 CoSign Desktop Version 5.2 -------------------------------- User Guide Notice This manual contains information that is proprietary to ARX (Algorithmic Research) Ltd. No part of this manual may be reproduced

More information

Forescout. eyeextend for MobileIron. Configuration Guide. Version 1.9

Forescout. eyeextend for MobileIron. Configuration Guide. Version 1.9 Forescout Version 1.9 Contact Information Forescout Technologies, Inc. 190 West Tasman Drive San Jose, CA 95134 USA https://www.forescout.com/support/ Toll-Free (US): 1.866.377.8771 Tel (Intl): 1.408.213.3191

More information

CertDigital Certification Services Policy

CertDigital Certification Services Policy CertDigital Certification Services Policy Page: 2 ISSUED BY : DEPARTAMENT NAME DATE ELECTRONIC SERVICES COMPARTMENT COMPARTMENT CHIEF 19.03.2011 APPROVED BY : DEPARTMENT NAME DATE MANAGEMENT OF POLICIES

More information

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

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

More information

CMS Enterprise Portal User Manual

CMS Enterprise Portal User Manual Centers for Medicare & Medicaid Services CMS expedited Life Cycle (XLC) 11/13/2017 Document Number: Enterprise_Portal_User_Manual_v6 Table of Contents Table of Contents 1. Introduction... 1 2. Overview...

More information

A guide to applying for INTOUCH2 access to remotely use the NHG-REDCap (Production Server) System

A guide to applying for INTOUCH2 access to remotely use the NHG-REDCap (Production Server) System O F F I C I A L U S E O N L Y Doc Name : Guide to applying for INTOUCH2 Access Doc Number : 1304-003 Doc Version : 1 Date : 11 May 2018 Guide to applying for INTOUCH2 Access A guide to applying for INTOUCH2

More information

Magyar Nemzeti Bank Electronic System for Receiving Authenticated Data ERA. Electronic Signature User Documentation

Magyar Nemzeti Bank Electronic System for Receiving Authenticated Data ERA. Electronic Signature User Documentation ERA Electronic Signature User Documentation Table of Contents 1. Introduction... 3 1.1. General information... 3 2. DesktopSign... 3 2.1. General information... 3 2.2. Installation... 3 3. MNBSubscriber...

More information

Secure IIS Web Server with SSL

Secure IIS Web Server with SSL Publication Date: May 24, 2017 Abstract The purpose of this document is to help users to Install and configure Secure Socket Layer (SSL) Secure the IIS Web server with SSL It is supported for all EventTracker

More information

Automated Background Check System (ABCS)- Requesting Access Guide. April 2018

Automated Background Check System (ABCS)- Requesting Access Guide. April 2018 Automated Background Check System (ABCS)- Requesting Access Guide April 2018 How do I access ABCS? Complete Background Check Request Access to HHS Enterprise Portal Request Access to ABCS Use ABCS There

More information

Hardware One-Time Password User Guide November 2017

Hardware One-Time Password User Guide November 2017 Hardware One-Time Password User Guide November 2017 1 Table of Contents Table of Contents... 2 Purpose... 3 About One-Time Password Credentials... 3 How to Determine if You Need a Credential... 3 Acquisition

More information

Authentify SMS Gateway

Authentify SMS Gateway RSA SMS HTTP Plug-In Implementation Guide Last Modified: December 2 nd, 2014 Partner Information Product Information Partner Name Web Site Product Name Product Description Authentify www.authentify.com

More information

BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps

BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps BrandingUI (Basic, Advanced, Enterprise) Getting Started - Important First Steps Step 1: Log into your BrandingUI Administrative site https:// yourclientid.brandingui.com/admin-signin.php Use the initial

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

ClientNet. Portal Admin Guide

ClientNet. Portal Admin Guide ClientNet Portal Admin Guide Document Revision Date: June 5, 2013 ClientNet Portal Admin Guide i Contents Introduction to the Portal... 1 About the Portal... 1 Logging On and Off the Portal... 1 Language

More information

Installation and Configuration Manual

Installation and Configuration Manual Installation and Configuration Manual IMPORTANT YOU MUST READ AND AGREE TO THE TERMS AND CONDITIONS OF THE LICENSE BEFORE CONTINUING WITH THIS PROGRAM INSTALL. CIRRUS SOFT LTD End-User License Agreement

More information

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information.

SOAP API. The correct URL has been hidden. Please contact your account manager for the full URL information. SMS Help Guides TNZ Group Limited sales@tnz.co.nz +64 9 9293000 +64 9 522 8839 SOAP API SOAP is a simple way of sending SMS/TXT messages via the internet. It is a great solution for integration into existing

More information

ForeScout Extended Module for MaaS360

ForeScout Extended Module for MaaS360 Version 1.8 Table of Contents About MaaS360 Integration... 4 Additional ForeScout MDM Documentation... 4 About this Module... 4 How it Works... 5 Continuous Query Refresh... 5 Offsite Device Management...

More information

NEXT GENERATION PERMISSIONS MANAGEMENT

NEXT GENERATION PERMISSIONS MANAGEMENT NEXT GENERATION PERMISSIONS MANAGEMENT Essentials Edition Easily manage Active Directory and file servers Essentials Plus Edition Advanced functions for Microsoft SharePoint und Exchange Enterprise Edition

More information

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017

1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 1 Covene Cohesion Administrator Guide A Modular Platform for Video Conferencing Management October 9, 2017 Software Version 4.5 Document Revision 1.0 2017 Covene LLC, All Rights Reserved. Covene, the Covene

More information

Public. Atos Trustcenter. Server Certificates + Codesigning Certificates. Version 1.2

Public. Atos Trustcenter. Server Certificates + Codesigning Certificates. Version 1.2 Atos Trustcenter Server Certificates + Codesigning Certificates Version 1.2 20.11.2015 Content 1 Introduction... 3 2 The Atos Trustcenter Portfolio... 3 3 TrustedRoot PKI... 4 3.1 TrustedRoot Hierarchy...

More information

ForeScout CounterACT. Configuration Guide. Version 1.2

ForeScout CounterACT. Configuration Guide. Version 1.2 ForeScout CounterACT Core Extensions Module: DNS Enforce Plugin Version 1.2 Table of Contents About the DNS Enforce Plugin... 3 What to Do... 4 Requirements... 4 Configure the Plugin... 4 Target IP...

More information

Thin Client Integration Guide Green Dot MoneyPak 8.0

Thin Client Integration Guide Green Dot MoneyPak 8.0 a u t h e n t i c a t i o n s o f t w a r e Cardinal Centinel TM for Merchants Thin Client Integration Guide Green Dot MoneyPak 8.0 Acknowledgements CardinalCommerce Corporation acknowledges with gratitude

More information

Administrator Manual. Last Updated: 15 March 2012 Manual Version:

Administrator Manual. Last Updated: 15 March 2012 Manual Version: Administrator Manual Last Updated: 15 March 2012 Manual Version: 1.6 http://www.helpdeskpilot.com Copyright Information Under the copyright laws, this manual may not be copied, in whole or in part. Your

More information

SAS Administration Guide. Version /mar/13

SAS Administration Guide. Version /mar/13 Administration Guide 10/mar/13 Table of contents 1 References......... 4 2 Introduction......... 5 3 overview......... 6 4 management portal......... 9 4.1 Access... 9 4.2 Account Manager view... 10 4.3

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

AT&T Business Messaging Account Management

AT&T Business Messaging Account Management Account Management Administrator User Guide July 2016 1 Copyright 2016 AT&T Intellectual Property. All rights reserved. AT&T, the AT&T logo and all other AT&T marks contained herein are trademarks of AT&T

More information

Create Decryption Policies to Control HTTPS Traffic

Create Decryption Policies to Control HTTPS Traffic Create Decryption Policies to Control HTTPS Traffic This chapter contains the following sections: Overview of Create Decryption Policies to Control HTTPS Traffic, page 1 Managing HTTPS Traffic through

More information

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ.

This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. This guide covers the installation, setup, and configuration of Sertifi for Salesforce CPQ. Contents Sertifi for Salesforce CPQ Prerequisites... 2 Section 1: Sertifi for Salesforce installation and setup...

More information

NAB TRANSACT. Direct Post v2.1.2 Integration Guide

NAB TRANSACT. Direct Post v2.1.2 Integration Guide NAB TRANSACT Direct Post v2.1.2 Integration Guide CONTENTS 1 Introduction 4 1.1 What is Direct Post? 4 1.2 Requirements for Implementation 4 1.2.1 Public Test Account Details 4 1.3 Card Types Accepted

More information

Online Documentation. Version 5.2

Online Documentation. Version 5.2 Online Documentation Version 5.2 Table of Contents Table of Contents... 1 Introduction... 2 INDORSE CLOUD Features Overview... 3 Getting Started with INDORSE CLOUD... 3 Install and Register in Mobile App

More information

Transforming the Document Signing Process

Transforming the Document Signing Process July 2015 Transforming the Document Signing Process Copyright Ascertia 2015 Sam Crook Key Account Manger Agenda About us Why are digital signatures inevitable? What are digital signatures? What can you

More information

VMware AirWatch Certificate Authentication for EAS with ADCS

VMware AirWatch Certificate Authentication for EAS with ADCS VMware AirWatch Certificate Authentication for EAS with ADCS For VMware AirWatch Have documentation feedback? Submit a Documentation Feedback support ticket using the Support Wizard on support.air-watch.com.

More information

NIELSEN API PORTAL USER REGISTRATION GUIDE

NIELSEN API PORTAL USER REGISTRATION GUIDE NIELSEN API PORTAL USER REGISTRATION GUIDE 1 INTRODUCTION In order to access the Nielsen API Portal services, there are three steps that need to be followed sequentially by the user: 1. User Registration

More information