OBP at the heart of your PSD2 strategy

Size: px
Start display at page:

Download "OBP at the heart of your PSD2 strategy"

Transcription

1 OBP at the heart of your PSD2 strategy API Days Nov 2017 Simon Redfern

2 Open Banking Open APIs for every bank.! Open Standards! Open Source! Open Data! Open Innovation! Why do we need a Web site?! Of course we have a Web site! Why do we need an API?! Of course we have an API! 1995! 2000! 2010! 2020! Banks gain faster time-to-market and save money! Developers have easy data access! Customers enjoy improved experience! In the future, every bank will have an API

3 Why important? Source: fabernovel, 6 reasons why API are reshaping our business An API reduces the time, complexity and cost of deploying banking apps! anks can leverage the OBP API to create better customer relationships!

4 Why now? Changing! Customer Behavior! 71% of millennials would rather go to the dentists than listen to what banks are saying! Non-Banking Competitors! ¾ millennials would be more excited about an offering from new entrants than from their own bank! Ageing IT systems! IT systems are perceived as! the #1 barrier to innovation! Upcoming Regulation! EU PSD2, UK Open Banking, Australia..! Current workarounds do not work anymore! Source: The Millennial Disruption Index, Scratch 2014 / Innovation in Retail Banking 2013, Efma-Infosys!

5 PSD2 33 Articles regulating Third-party access to Transaction History Payments In the context of: Strong customer authentication Exemptions to strong customer authentication Security measures Monitoring Compliance and reporting on the above

6 PSD2 - Dynamic Strong Auth Article 1 requires strong authentication in certain contexts but also exemptions depending on level of risk, amount, counterparty, frequency of payment, channel, time since the user performed strong authentication etc.. OBP provides base authentication (OAuth or Gateway Login) and Security Challenges (e.g. SMS TAN) which are required to complete certain transactions. OBP messages such as getchallengethreshold and validatechallengeanswer communicate with CBS to provide dynamic strong auth inside the OBP APIs.

7 PSD2 - Monitoring + Alerts Article 2 covers monitoring and alerts in response to fraudulent payments payments considering previous user behavior, transaction history, location of payer and payee, known compromised secure elements and current attacks. OBP provides numerous sources for this: RESTful resources include: Transaction Requests, Transaction + Counterparty Geolocation Metadata, KYC info. In flight messages that can be monitored using open source tools include: createtransactionrequest, createsecuritychallenge

8 PSD2 Security Testing Article 3 covers review of security measures which must be documented, periodically tested, evaluated and audited by internal or external independent and qualified auditors. OBP provides: OBP API Tester Unit Tests API Explorer for manual validation API Manager for Role checking Reference Apps for manual validation Jenkins integration for test automation.

9 PSD2 Authcode Article 4 covers AuthCode, a non-reversible, one time use code that is locked to a specific payment (Transaction Request) or other operation that should be submitted correctly by the user for the operation to proceed. OBP provides functions that call / implement this functionality including: getauthcode, storeauthcodechallenge, sendauthcode - and endpoints e.g. answer transaction request challenge that use checkauthcode

10 PSD2 Dynamic Linking Article 5 covers Dynamic linking Inform the payer of the amount and the payee. The Auth Code must be bound to the original Transaction Request. Assure the confidentiality, authenticity and integrity of the amount and payee during all phases of authentication, the AuthCode generation and when information is displayed to user. OBP Transaction Requests and challenge endpoints contain counterparty and amount information that allows the calling App to present this information to the user. The AuthCode is a digest of the originally submitted Transaction Request.

11 PSD2 Elements Articles cover Requirements of elements categorised as knowledge, possession (hardware) and inherence (biometrics) and their independence. OAuth keeps user credentials separate from the resource endpoints. Any authentication scheme (biometric, password, SMS TAN) can be used on the user login page and OBP step up security challenge flows.

12 PSD2 Restricted data Articles 10 requires that strong customer authentication not be required a second time where a payment service user is limited to accessing either or both of the following items online without disclosure of sensitive payment data: (a) the balance of one or more designated payment accounts; (b) the payment transactions executed in the last 90 days. OBP provides account views which provide fine grained access to account and transaction data over unified endpoints.

13 PSD2 Point of Sale Article 11 covers contactless point of sale. OBP supports multiple authentication methods, transaction request types and security challenges to support a variety of payment initiation contexts.

14 PSD2 Transport + Parking Article 12 specifies that transport and parking fares should not incur payment charges. OBP transaction charges are are configurable by Transaction Request Type Transaction Request Type = TRANSPORT or PARKING would have a charge of 0.

15 PSD2 Trusted beneficiaries and recurring transactions Article 13 regulates that trusted beneficiaries and recurring transactions are not subject to strong auth. OBP Transaction Request Type = COUNTERPARTY requires payment to an account previously specified by the customer (Counterparty is_beneficiary=true). The return value of challengelevel controls if step-up authorisation is activated for repeated based on regular counterparty and amounts.

16 PSD2 Payments to Self Article 14 regulates that Payments to own accounts be treated separately. OBP Views include the permission can_create_transaction_request_to_own account. The owner of an account has access to this permission which allows payments to own accounts by a different Transaction Request Type

17 PSD2 Low value payments Article 15 regulates that low value payments are not subject to strong auth. The OBP function getchallengelevel accepts a number of parameters that allow back end systems to respond with a dynamic currency and amount level - depending on various real-time risk factors and constant elements - at which step up authentication will be triggered. If the payment amount is below the threshold the Transaction Request will cause OBP to directly request a Transaction in the payment system / CBS.

18 PSD2 Trans Risk Analysis Article 16 Transaction risk analysis. Payments exempted from strong customer authentication where transaction monitoring shows low risk. OBP provides a number of REST API endpoints and other interfaces that risk engines can use to query core banking and related metadata. Some relevant data points include: Payer location (Lat, Long of Transaction) Payee location (Lat, Long of Counterparty) History of Transaction Locations (Lat, Longs of Transactions) History of Counterparty Locations (Lat, Longs of Counterparties) History of Transaction amounts, dates, counterparties and tags available via a high performance search interface.

19 PSD2 Monitoring Article 17 Monitoring - Payment service providers that make use of the exemptions need to make the following available: Average transaction value under strong auth Average transaction value under exemption Number of transactions under exemption. Percentage of exemptions compared to total number. OBP endpoints for the regulators will be available under at /obp/v3.0.0/reporting/transaction-statistics This endpoint will require the Role: CanGetTransactionStatistics

20 PSD2 Excessive Fraud Rates Article 18 covers invalidation and optionality of exemptions. PSPs must immediately report excessive fraud rates to the regulators. OBP will provide endpoints for the regulators to query fraud rates e.g. /obp/v3.0.0/reporting/fraud-rates/ TRANSACTION_REQUEST_TYPE The OBP PSD2 App (WIP) and automated processes (cron job) will consume these endpoints and send s to the regulator if numbers exceed a threshold.

21 PSD2 Credentials Article 19 and 20 - cover the creation, confidentiality and integrity of the personalised security credentials OBP uses end-to-end encryption for: REST interfaces (https) OAuth1.0a encrypts credentials in addition to transport TLS. Akka communication to Storage Servers to RDBMS Connector communication with Kafka message queues Adapter communication with core banking systems OBP data is stored in a three tiered architecture and the RDBMS is protected by type safe storage APIs. Database file system is encrypted with private keys stored in Hardware Security Module (HSM) OBP is OWASP safe. Passwords are not echoed to the user. Strong passwords are enforced. Users are locked out following successive failed password attempts.

22 PSD2 Report For the remaining PSD2 articles - and more details on the above, please request our PSD2 report from contact@tesobe.com

23 The Open Bank Project The Open Bank Project is an open source API and App Store for banks and a developer community around.! 1/ Open Standard! 2/ Open Source Technology! 3/ Developer Community Banks can can leverage the the OBP OBP API API to create to create better better customer relationships

24 Overview Bank s Customers Trusted! developers The Bank Mobile and web applications OBP API! OBP Connectors! Public Facing APIs! South side! Adapters! Core Banking Systems! We offer a white-labeled API solution for banks and complementary services!

25 App API example Catalogue - Underdraft Past Participants Past Participants A catalogue of 130+ API Definitions available!

26 App Developer example - Community Underdraft Past Participants Past Participants FinTechs use the Open Bank Project API!

27 RESTful HTTP(s) An approach to API design Resources to GET / POST / PUT / PATCH / DELETE Not quite CRUD Supported by many clients, servers (the internet) If consistent, developers can make assumptions about endpoints Test in browser Versioning in URL Sort params in URL Test in REST client Direct Auth options

28 JSON Strings, numbers, true, false, null, objects and arrays: { } "id": 1, "name": "REST in Practice: Hypermedia and Systems Architecture", "price": { "currency": "USD", "amount": }, "good_book": true, "publisher": "O'Reilly", "authors": ["Ian Robinson", "Jim Webber", "Savas Parastatidis"], "available_since": " T17:14:55Z", "comment": null to validate

29 Developer Portal

30 Explore API + Swagger + ResourceDoc

31 Manage API Explore API in context of the logged in user.

32 Fine grained Access (Views)

33 Metadata

34 Developer Tools - SDKs Apache Licensed (Handle the OAuth flow)

35 Customer Logins

36 Deployment options Developers, Partners & Bank IT can easily run OBP on laptop or cloud - from source code or Docker. Images are now regularly updated!

37 OBP API

38 OBP API

39 Auth OAuth 1.0a OAuth2 + OpenID Connect (Ext.) Direct Login Gateway Login

40 Docs Swagger ResourceDoc API Explorer

41 Bank as a Platform Simon Redfern, simon@tesobe.com

SecuRe Pay recommendations for the security of mobile payments

SecuRe Pay recommendations for the security of mobile payments ECB-PUBLIC FINAL SecuRe Pay recommendations for the security of mobile payments Stephanie Czák Senior Market Infrastructure Expert European Central Bank ETSI/EC Collaborative Ecosystem for M-Payments Workshop

More information

COMMISSION DELEGATED REGULATION (EU) No /.. of XXX

COMMISSION DELEGATED REGULATION (EU) No /.. of XXX EUROPEAN COMMISSION Brussels, XXX [ ](2017) XXX draft COMMISSION DELEGATED REGULATION (EU) No /.. of XXX supplementing Directive 2015/2366 of the European Parliament and of the Council with regard to regulatory

More information

FINACLE SERVICES: API MANAGEMENT USING CA API GATEWAY

FINACLE SERVICES: API MANAGEMENT USING CA API GATEWAY FINACLE SERVICES: API MANAGEMENT USING CA API GATEWAY Executive Summary Banks embarking on a digital transformation in today s connected world need to thrive, compete and evolve. To accelerate this transformation,

More information

A step towards cashless economy - Unified Payments Interface (UPI)

A step towards cashless economy - Unified Payments Interface (UPI) A step towards cashless economy - Unified Payments Interface (UPI) What is Unified Payment Interface? Objective of a unified payments system is to offer an architecture and a set of APIs on top of existing

More information

Workspace ONE. Insert Presenter Name. Empowering a Digital Workspace. Insert Presenter Title

Workspace ONE. Insert Presenter Name. Empowering a Digital Workspace. Insert Presenter Title Workspace ONE Empowering a Digital Workspace Insert Presenter Name Insert Presenter Title Every dimension of our lives is GOING DIGITAL 2 Consumerization is driving DIGITAL TRANSFORMATION Modern Workforce

More information

1. GENERAL. 1.2 Standard Service Features

1. GENERAL. 1.2 Standard Service Features Visual Interactive Calling + 1. GENERAL 1.1 Service Definition 1.2 Standard Service Features 1.3 Optional Service Features 2. CUSTOMER RESPONSIBILITIES 2.1 Single Point of Contact 2.2 Customer Resources

More information

SIMPLE FUND 360: AN AUDITORS GUIDE. Australia s leading cloud SMSF admin solution AN AUDITORS GUIDE.

SIMPLE FUND 360: AN AUDITORS GUIDE. Australia s leading cloud SMSF admin solution AN AUDITORS GUIDE. Australia s leading cloud SMSF admin solution AN AUDITORS GUIDE www.bglcorp.com Prepared by BGL Corporate Solutions Pty Ltd March 2018 CONTENTS 1.0 Overview of BGL s Web Applications 2.0 Data Sources and

More information

WHITE PAPER. Payments organizations can leverage APIs to monetize their data and services. Abstract

WHITE PAPER. Payments organizations can leverage APIs to monetize their data and services. Abstract WHITE PAPER Payments organizations can leverage APIs to monetize their data and services Abstract Open banking initiatives such as the revised directive on payment services (PSD2), emergence of fintechs,

More information

Oracle PaaS and IaaS Universal Credits Service Descriptions

Oracle PaaS and IaaS Universal Credits Service Descriptions Oracle PaaS and IaaS Universal Credits Service Descriptions December 1, 2017 Oracle PaaS_IaaS_Universal_CreditsV120117 1 Metrics... 3 Oracle PaaS and IaaS Universal Credit... 8 Oracle PaaS and IaaS Universal

More information

Primavera Analytics and Primavera Data Warehouse Security Overview

Primavera Analytics and Primavera Data Warehouse Security Overview Analytics and Primavera Data Warehouse Security Guide 15 R2 October 2015 Contents Primavera Analytics and Primavera Data Warehouse Security Overview... 5 Safe Deployment of Primavera Analytics and Primavera

More information

Open Banking Approach with SmartVista Technologies. Peter Theunis. BPC Banking Technologies 2017 Mexico City

Open Banking Approach with SmartVista Technologies. Peter Theunis. BPC Banking Technologies 2017 Mexico City Open Banking Approach with SmartVista Technologies. Peter Theunis BPC Banking Technologies 2017 Mexico City bpcbt.com What are Open API s Peter Theunis BPC Banking Technologies 2017 Mexico City bpcbt.com

More information

Single Euro Payments Area

Single Euro Payments Area Single Euro Payments Area Background The Single Euro Payments Area (SEPA) is a payment-integration initiative of the European Union for simplification of bank transfers. As of March 2012, SEPA consists

More information

Secure information access is critical & more complex than ever

Secure information access is critical & more complex than ever WHITE PAPER Purpose-built Cloud Platform for Enabling Identity-centric and Internet of Things Solutions Connecting people, systems and things across the extended digital business ecosystem. Secure information

More information

No digitalization without risks

No digitalization without risks No digitalization without risks How to equip your organization against the new fraud threads? Frédéric Hennequin Senior Solution Specialist Fraud & Compliance Agenda SAS Introduction Online Fraud in Belgium

More information

API Gateway Digital access to meaningful banking content

API Gateway Digital access to meaningful banking content API Gateway Digital access to meaningful banking content Unlocking The Core Jason Williams, VP Solution Architecture April 10 2017 APIs In Banking A Shift to Openness Major shift in Banking occurring whereby

More information

OpenBank - banking platform for e-money management based on blockchain technology (version 0.2)

OpenBank - banking platform for e-money management based on blockchain technology (version 0.2) OpenBank - banking platform for e-money management based on blockchain technology (version 0.2) Dr. Pavel Kravchenko, Sergiy Vasilchuk, Bohdan Skriabin Abstract Traditional banking technology has multiple

More information

An all-in-one risk management platform delivering fraud detection, transactions screening and customer due diligence capabilities

An all-in-one risk management platform delivering fraud detection, transactions screening and customer due diligence capabilities CGI Centaur An all-in-one risk management platform delivering fraud detection, transactions screening and customer due diligence capabilities What is CGI Centaur? CGI Centaur is a versatile and complex

More information

Transforming Payments in an assembly game

Transforming Payments in an assembly game Open Banking API for Payments Transforming Payments in an assembly game Jean-François Delorme Partner Paiements, DXC Technology The World of Yesterday The classic French Garden style 2 Payment Industry

More information

The Leading Low-code Application Platform For Modern Work Management

The Leading Low-code Application Platform For Modern Work Management The Leading Low-code Application Platform For Modern Work Management TrackVia is a next-generation low-code application platform designed to help business and operations executives gain newfound control

More information

Hardware and Software Requirements

Hardware and Software Requirements Oracle Retail Customer Engagement Release Notes Release 16.0 December 2016 This document highlights the major changes for Release 16.0 of Oracle Retail Customer Engagement. Overview Oracle Retail Customer

More information

CUSTOMER ENGAGEMENT STARTS WITH SINGLE SIGN-ON

CUSTOMER ENGAGEMENT STARTS WITH SINGLE SIGN-ON E-BOOK CUSTOMER ENGAGEMENT STARTS WITH SINGLE SIGN-ON (BUT IT DOESN T END THERE) 03 ANSWERING HIGH EXPECTATIONS WITH CUSTOMER SSO 05 EXCEED EXPECTATIONS WITH CUSTOMER SSO 07 SSO IS WINNING THE CUSTOMER

More information

In-Browser Notifications

In-Browser Notifications The unprecedented online communication engine for Internet service providers In-Browser Notifications The right message, at the right time, in the right format, for the right device Front Porch s innovative

More information

NextGenPSD2 Conference 2017

NextGenPSD2 Conference 2017 THE Berlin GROUP A EUROPEAN STANDARDS INITIATIVE NextGenPSD2 Conference 2017 Payment Initiation Service, PIS Oliver Bieser, Deutsche Bank Ortwin Scheja, SRC «««««««««««« Content 1 Payment Types 2 Payment

More information

Nordea webinar 29/ : PSD2 Access to Accounts a game changer

Nordea webinar 29/ : PSD2 Access to Accounts a game changer Nordea webinar 29/11-2017: PSD2 Access to Accounts a game changer Brief intro setting the scene Some practicalities: 9.00-9.45 CET Webinar is being recorded - material will be uploaded to www.nordea.com/vendors

More information

Department of Financial Services Office of Financial Regulations

Department of Financial Services Office of Financial Regulations ITN Section erence Vendor Question 1.a Section 1.3.3 (page 9) of ITN Attachment B states that Approximately 2 million transactions exceeding the $1,000 occur which equates to an estimated average of 160,000

More information

You operate in a demanding 24x7 global environment. You need a system that does too.

You operate in a demanding 24x7 global environment. You need a system that does too. You operate in a demanding 24x7 global environment. You need a system that does too. FXL: the industry s most flexible cross-product, front-to-back transaction processing solutions Introduction The financial

More information

When the hard-to-reach become your preferred customers. Finc / the offering which addresses financial inclusion challenges

When the hard-to-reach become your preferred customers. Finc / the offering which addresses financial inclusion challenges When the hard-to-reach become your preferred customers Finc / the offering which addresses financial inclusion challenges Powering the Financial Inclusion revolution Today, 75% of the world s population

More information

Introduction to Faster Payments in the U.S. REGIONAL PAYMENTS ASSOCIATIONS

Introduction to Faster Payments in the U.S. REGIONAL PAYMENTS ASSOCIATIONS Introduction to Faster Payments in the U.S. REGIONAL PAYMENTS ASSOCIATIONS April 2017 The industry is taking bold steps to create faster, secure solutions for a variety of payments needs. New capabilities

More information

PREDICTIVE INTELLIGENCE SECURITY, PRIVACY, AND ARCHITECTURE

PREDICTIVE INTELLIGENCE SECURITY, PRIVACY, AND ARCHITECTURE PREDICTIVE INTELLIGENCE SECURITY, PRIVACY, AND ARCHITECTURE Last Updated: May 6, 2016 Salesforce s Corporate Trust Commitment Salesforce is committed to achieving and maintaining the trust of our customers.

More information

Simple. Serverless. Secure. { Secure Cloud Printing for Business }

Simple. Serverless. Secure. { Secure Cloud Printing for Business } Simple. Serverless. Secure. { Secure Cloud Printing for Business } Secure Cloud Printing for Business Cloud services can transform how today's businesses work, optimizing processes while reducing capital

More information

{ Secure Cloud Printing & Scanning for Business }

{ Secure Cloud Printing & Scanning for Business } Simple. Serverless. Secure. { Secure Cloud Printing & Scanning for Business } Secure Cloud Printing & Scanning for Business Cloud services can transform how today's businesses work, optimizing processes

More information

Use Hyperion Workspace User's Guide

Use Hyperion Workspace User's Guide Use Hyperion Workspace User's Guide 11.1.1.3 This software or hardware is developed for general use in a variety of information In EPM Workspace, select Tools, then Install, and then Smart View. Oracle

More information

BUYER S GUIDE: CUSTOMER IDENTITY & ACCESS MANAGEMENT (CIAM)

BUYER S GUIDE: CUSTOMER IDENTITY & ACCESS MANAGEMENT (CIAM) BUYER S GUIDE: CUSTOMER IDENTITY & ACCESS MANAGEMENT (CIAM) SHIFTING MARKETPLACE Over the last few years, there s been a major shift in requirements for enterprises managing customer identities. This shift

More information

Tascent Enterprise Suite Multimodal Biometric Identity Platform

Tascent Enterprise Suite Multimodal Biometric Identity Platform TM Tascent Enterprise Suite Multimodal Biometric Identity Platform tascent.com Multimodal Biometric Identity System Secure, scalable, and easy-to-use, the Tascent Enterprise Suite represents a thoroughly

More information

Analytics in the Cloud, Cross Functional Teams, and Apache Hadoop is not a Thing Ryan Packer, Bank of New Zealand

Analytics in the Cloud, Cross Functional Teams, and Apache Hadoop is not a Thing Ryan Packer, Bank of New Zealand Paper 2698-2018 Analytics in the Cloud, Cross Functional Teams, and Apache Hadoop is not a Thing Ryan Packer, Bank of New Zealand ABSTRACT Digital analytics is no longer just about tracking the number

More information

Best Practices for IT Service Management in 2017+

Best Practices for IT Service Management in 2017+ Best Practices for IT Service Management in 2017+ Branko Tadić ITSM Solution Executive IBM Hybrid Cloud Europe branko.tadic@rs.ibm.com 2016 IBM Corporation 2016 IBM Corporation 2016 IBM Corporation 2016

More information

Cloud Service for Transformation of On-site Work through Smart Devices

Cloud Service for Transformation of On-site Work through Smart Devices Cloud Service for Transformation of On-site Work through Smart Devices Susumu Terasaka Masatomo Yasaki Norie Tachibana Hiroyoshi Kasai The use of smartphones, tablets, and other smart devices is expanding

More information

Managing Data in Motion with the Connected Data Architecture

Managing Data in Motion with the Connected Data Architecture Managing in Motion with the Connected Architecture Dmitry Baev Director, Solutions Engineering Doing It Right SYMPOSIUM March 23-24, 2017 1 Hortonworks Inc. 2011 2016. All Rights Reserved 4 th Big & Business

More information

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into

The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into The following is intended to outline our general product direction. It is intended for information purposes only, and may not be incorporated into any contract. It is not a commitment to deliver any material,

More information

WHITE PAPER. Encouraging innovation in payments through the PSD2 initiative. Abstract

WHITE PAPER. Encouraging innovation in payments through the PSD2 initiative. Abstract WHITE PAPER Encouraging innovation in payments through the PSD2 initiative Abstract Revised Directive on Payment Services (PSD2) is primarily aimed at bringing new, online modes of payments initiation

More information

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD

THE MOBlLE APP. REVOLUTlON. 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD THE MOBlLE APP REVOLUTlON 8 STEPS TO BUlLDING MOBlLE APPS FAST ln THE CLOUD People use hand-held devices for everything from communicating and playing games to shopping and surfing the Internet. In fact,

More information

Technical Requirements. Web API Connectivity Single Shelf Price/Price Without Tax

Technical Requirements. Web API Connectivity Single Shelf Price/Price Without Tax Technical Requirements Web API Connectivity Single Shelf Price/Price Without Tax December 2, 2016 1 Document Overview Who is this document for? This document is intended to be consumed by the business

More information

Review of Priviti PSD2 Use Case and its positioning compared to alternative marketplace offerings

Review of Priviti PSD2 Use Case and its positioning compared to alternative marketplace offerings Review of Priviti PSD2 Use Case and its positioning compared to alternative marketplace offerings The revised Payment Service Directive (PDS2) is a directive focused on better integration of an internal

More information

ARA Plugin for CA CDD User Guide

ARA Plugin for CA CDD User Guide Automic Release Automation ONE Automation ARA Plugin for CA CDD User Guide Version: 1.0.0 Publication Date: 2017-05 Automic Software GmbH ii Chapter Copyright Automic and the Automic logo are trademarks

More information

Security overview. 2. Physical security

Security overview. 2. Physical security 1. Collaborate on your projects in a secure environment Thousands of businesses, including Fortune 500 corporations, trust Wrike for managing their projects through collaboration in the cloud. Security

More information

Pre-Installation Instructions

Pre-Installation Instructions Agile Product Lifecycle Management PLM Mobile Release Notes Release 3.1 E65644-01 August 2015 These Release Notes provide technical information about Oracle Product Lifecycle Management (PLM) Mobile 3.1.

More information

Case Study Online Mobile Topup and Internet Recharge System for US Military Personnel

Case Study Online Mobile Topup and Internet Recharge System for US Military Personnel Case Study Online Mobile Topup and Internet Recharge System for US Military Personnel www.brainvire.com 2016 Brainvire Infotech Pvt. Ltd Page 1 of 1 Client Requirement The client is a leading global IP

More information

Free On-Line Microsoft PDF

Free On-Line Microsoft PDF Free On-Line Microsoft 70-534 PDF Microsoft 70-534 Dumps Available Here: microsoft-exam/70-534-dumps.html Enrolling now you will get access to 126 questions with a unique 70-534 dumps. Testlet 1 VanArsdel,

More information

Product. Corillian Business Online Business Banking Solutions on the Industry s Leading Online Banking Platform

Product. Corillian Business Online Business Banking Solutions on the Industry s Leading Online Banking Platform Product Corillian Business Online Business Banking Solutions on the Industry s Leading Online Banking Platform Product In light of the financial crisis exposing market uncertainty and increased competition,

More information

Identity and Access Management

Identity and Access Management Chapter 2 Identity and Access Management There are many configurations of identity and access management (IAM) systems, and to some extent, each organization s IAM system will be unique, developed and

More information

Extending Enterprise to the Edge

Extending Enterprise to the Edge Extending Enterprise to the Edge EXECUTIVE SUMMARY There is a lot of hype around the Internet of Things (IoT), especially with so many solution providers claiming to have end-to-end solutions. But when

More information

Oracle Banking Digital Experience

Oracle Banking Digital Experience Oracle Banking Digital Experience Release Notes Release 16.1.0.0.0 Part No. E71761-01 March 2016 Oracle Banking Digital Experience Release Notes, Release 16.1.0.0.0 March 2016 Oracle Financial Services

More information

ForgeRock Identity Management

ForgeRock Identity Management WHITE PAPER ForgeRock Identity Management Purpose-built to seamlessly manage identities across all channels, on-premises, in the cloud, and on mobile Introduction Win over customers with a safe and secure

More information

HOW TO BUILD AN ENTERPRISE APl PLATFORM 20 WAYS. TO BETTER DELIVER, MANAGE & SECURE APIs

HOW TO BUILD AN ENTERPRISE APl PLATFORM 20 WAYS. TO BETTER DELIVER, MANAGE & SECURE APIs HOW TO BUILD AN ENTERPRISE APl PLATFORM Powering The APl Economy Mobile & Cloud Computing have fundamentally changed the way we interact with companies we do business with. Today s consumer and business

More information

XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever

XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever XML Gateway with BPEL - B2B and A2A integrations are now simpler and faster than ever Kalyan Sura ksura@hcl.in HCL America Introduction With so much emphasis being made on utilizing Service Oriented Architecture

More information

Integrated mobile services platform for enterprises. Enterprise Mobility Platform. (E) (W) softwaredynamics.co.

Integrated mobile services platform for enterprises. Enterprise Mobility Platform. (E) (W) softwaredynamics.co. Enterprise Mobility Platform Integrated mobile services platform for enterprises MOBILE SALES MOBILE PAYMENTS ASSET TRACKING SMS ALERTS ERP INTEGRATION P. O. BOX 56465-00200, NRB KENYA, TITAN BLG, MEZZ

More information

Cisco Enterprise Mobility Services Platform (EMSP)

Cisco Enterprise Mobility Services Platform (EMSP) Data Sheet Cisco Enterprise Mobility Services Platform (EMSP) Product Overview The Cisco Enterprise Mobility Services Platform (EMSP) is a holistic mobile software platform. It unifies the development,

More information

ExtendTime A completely automated IP Telephony time and attendance solution that immediately realizes an organizational return on investment.

ExtendTime A completely automated IP Telephony time and attendance solution that immediately realizes an organizational return on investment. A completely automated IP Telephony time and attendance solution that immediately realizes an organizational return on investment. Introduction Companies that are considering purchasing IP Telephony systems,

More information

Ticketing: How ACME s Cloud-Based Enterprise Platform Benefits Your Business

Ticketing: How ACME s Cloud-Based Enterprise Platform Benefits Your Business Ticketing: How ACME s Cloud-Based Enterprise Platform Benefits Your Business Today the cloud is replacing on-premise or hosted enterprise workloads, one vertical at a time. ACME was started to introduce

More information

HP Service Manager. Software Version: 9.40 For the supported Windows and Unix operating systems. Processes and Best Practices Guide (Classic Mode)

HP Service Manager. Software Version: 9.40 For the supported Windows and Unix operating systems. Processes and Best Practices Guide (Classic Mode) HP Service Manager Software Version: 9.40 For the supported Windows and Unix operating systems Processes and Best Practices Guide (Classic Mode) Document Release Date: January 2015 Software Release Date:

More information

Industry Briefing Strong authentication of Internet Payments in Europe - the new PSD2

Industry Briefing Strong authentication of Internet Payments in Europe - the new PSD2 Industry Briefing Strong authentication of Internet Payments in Europe - the new PSD2 Copyright 2015 VASCO Data Security. All rights reserved. No part of this publication may be reproduced, stored in a

More information

Office 365 Governance & Security

Office 365 Governance & Security Technical Overview Office 365 Governance & Security Your Policy. Our Automation. Accountability & Security Recertification Public Site Collection Directory - Provides a list of all site collections along

More information

RESPONSES TO CONSULTATION PAPER

RESPONSES TO CONSULTATION PAPER RESPONSES TO CONSULTATION PAPER re: for: Consultation Paper on the draft Regulatory Technical Standards specifying the requirements on strong customer authentication and common and secure communication

More information

Oracle. SCM Cloud Administering Pricing. Release 13 (update 17D)

Oracle. SCM Cloud Administering Pricing. Release 13 (update 17D) Oracle SCM Cloud Release 13 (update 17D) Release 13 (update 17D) Part Number E89214-01 Copyright 2011-2017, Oracle and/or its affiliates. All rights reserved. Author: carl casey This software and related

More information

Financial Services Cloud Installation Guide

Financial Services Cloud Installation Guide Financial Services Cloud Installation Guide Salesforce, Spring 18 @salesforcedocs Last updated: April 18, 2018 Copyright 2000 2018 salesforce.com, inc. All rights reserved. Salesforce is a registered trademark

More information

Extending Identity and Access Management to ios Mobile Devices

Extending Identity and Access Management to ios Mobile Devices Extending Identity and Access Management to ios Mobile Devices Sudhir Tadi Senior Technology Sales Consultant EMEA Presales Center 1 The following is intended to outline our general product direction.

More information

Creating an integrated plug-and-play supply chain with serverless computing

Creating an integrated plug-and-play supply chain with serverless computing Microsoft IT Showcase Creating an integrated plug-and-play supply chain with serverless computing Microsoft Core Services Engineering (CSE, formerly Microsoft IT) teamed with the Microsoft Devices Supply

More information

SAP Banking APIs (beta)

SAP Banking APIs (beta) Administrator's Guide Document Version: 1.0 2017-05-08 CUSTOMER Table of Contents 1 Use... 3 1.1 Functionality... 3 1.2 Note on Beta Shipment... 3 1.3 System Landscape... 3 2 Authentication and Authorization...

More information

Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered.

Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered. Oracle Platform as a Service and Infrastructure as a Service Public Cloud Service Descriptions-Metered & Non-Metered November 20, 2017 Contents GLOSSARY PUBLIC CLOUD SERVICES-NON-METERED... 9 API Call...

More information

WiFiLAN Cloud. Wifi-soft Solutions

WiFiLAN Cloud. Wifi-soft Solutions WiFiLAN Cloud Wifi-soft Solutions Company Snapshot Company Profile Wi-Fi Solution Provider 8+ years in Wi-Fi business Markets US, Canada, U.K, Germany, Italy, Middle East, Israel, Mexico, Latin America,

More information

Syslog Technologies Innovative Thoughts

Syslog Technologies Innovative Thoughts EMPLOYEE LEAVE MANAGEMENT SYSTEMANDROIDAPP ABSTRACT: - As a competitive organisation, you need a reliable leave management system to manage employee absence, calculate leave accruals and make payments

More information

More information for FREE VS ENTERPRISE LICENCE :

More information for FREE VS ENTERPRISE LICENCE : Source : http://www.splunk.com/ Splunk Enterprise is a fully featured, powerful platform for collecting, searching, monitoring and analyzing machine data. Splunk Enterprise is easy to deploy and use. It

More information

Seven Ways to Create an Unbeatable Enterprise Mobility Strategy

Seven Ways to Create an Unbeatable Enterprise Mobility Strategy Seven Ways to Create an Unbeatable Enterprise Mobility Strategy A practical guide to what business and IT leaders need to do NOW to manage their business s mobile future By Arun Bhattacharya, CA Technologies

More information

PNMsoft SCE July 2016 Product Version 7.5 and above

PNMsoft SCE July 2016 Product Version 7.5 and above PNMsoft Knowledge Base Sequence User Guides PNMsoft SCE July 2016 Product Version 7.5 and above 2016 PNMsoft All Rights Reserved This document, including any supporting materials, is owned by PNMsoft Ltd

More information

An Enterprise Architect s Guide to API Integration for ESB and SOA

An Enterprise Architect s Guide to API Integration for ESB and SOA An Enterprise Architect s Guide to API Integration for ESB and SOA The New Digital Imperative While some are still adjusting to the idea, you re well aware that we re living in an application economy.

More information

PCI COMPLIANCE PCI COMPLIANCE RESPONSE BREACH VULNERABLE SECURITY TECHNOLOGY INTERNET ISSUES STRATEGY APPS INFRASTRUCTURE LOGS

PCI COMPLIANCE PCI COMPLIANCE RESPONSE BREACH VULNERABLE SECURITY TECHNOLOGY INTERNET ISSUES STRATEGY APPS INFRASTRUCTURE LOGS TRAILS INSIDERS LOGS MODEL PCI Compliance What It Is And How To Maintain It PCI COMPLIANCE WHAT IT IS AND HOW TO MAINTAIN IT HACKERS APPS BUSINESS PCI AUDIT BROWSER MALWARE COMPLIANCE VULNERABLE PASSWORDS

More information

New Features in Primavera Gateway 14.2

New Features in Primavera Gateway 14.2 New Features in Primavera Gateway 14.2 September 2014 COPYRIGHT & TRADEMARKS Copyright 2014, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or

More information

Introducing Infor Xi/Ming.le for M3

Introducing Infor Xi/Ming.le for M3 Introducing Infor Xi/Ming.le for M3 Merit Consulting AS Sandnes/Norway karsten.hesselager@infor.com 1 2 Agenda Introducing Infor Xi Tech Stack Why have Infor developed Xi? What is included in Xi Demo of

More information

Infor LN Configuration Guide for Infor ION API. Infor LN 10.5 Xi Platform 12.x

Infor LN Configuration Guide for Infor ION API. Infor LN 10.5 Xi Platform 12.x Infor LN Configuration Guide for Infor ION API Infor LN 10.5 Xi Platform 12.x Copyright 2017 Infor Important Notices The material contained in this publication (including any supplementary information)

More information

Prepare for GDPR today with Microsoft 365

Prepare for GDPR today with Microsoft 365 Prepare for GDPR today with Microsoft 365 2 Table of contents 01. 02. 03. 04. 05. Executive Sumary Landscape Assess and manage your compliance risk Protect your most sensitive data Closing 3 01. Executive

More information

Microsoft Exam

Microsoft Exam Volume: 148 Questions Case Study: 1 VanArsdel, Ltd Overview VanArsdel, Ltd. builds skyscrapers, subways, and bridges. VanArsdel is a leader in using technology to do construction better. Overview VanArsdel

More information

Microsoft Dynamics GP What s New

Microsoft Dynamics GP What s New Microsoft Dynamics GP 2015 What s New Copyright Copyright 2014 Microsoft. All rights reserved. Limitation of liability This document is provided as-is. Information and views expressed in this document,

More information

Fraud and identity verification consulting case study maximize bookings and reduce operational costs by using the right data

Fraud and identity verification consulting case study maximize bookings and reduce operational costs by using the right data Fraud and identity verification consulting case study maximize bookings and reduce operational costs by using the right data Client Top-tier U.S. card issuer Chris Ryan Experian Experian and the marks

More information

CHAPTER 3: REQUIREMENT ANALYSIS

CHAPTER 3: REQUIREMENT ANALYSIS CHAPTER 3: REQUIREMENT ANALYSIS 3.1 Requirements Gathering At the start of the project, the travel management process handled by the admin department was studied in detail by using the basic requirement

More information

PRIME SM. A Next-Generation Solution for the World of Global Payments. Flexible Deployment Model. Reduce Cost of Ownership

PRIME SM. A Next-Generation Solution for the World of Global Payments.  Flexible Deployment Model. Reduce Cost of Ownership Product Overview PRIME SM Reduce Cost of Ownership Speed-to-Market Risk Management Flexible Deployment Model A Next-Generation Solution for the World of Global Payments www.tsysprime.com PRIME Product

More information

Edgar, Dunn & Company A Closer Look at the Payment Regulations. Webinar 25 th June 2015

Edgar, Dunn & Company A Closer Look at the Payment Regulations. Webinar 25 th June 2015 Edgar, Dunn & Company A Closer Look at the Payment Regulations Webinar 25 th June 2015 Edgar, Dunn & Company, 2015 Introduction This webinar will focus on two key regulatory topics: Multilateral Interchange

More information

Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration

Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration Integration Information SAP Hybris Marketing Document Version: 2.4.4 2018-02-05 Integration with SAP Hybris Marketing - Google AdWords and SAP Cloud Platform Integration How to Set Up the Integration with

More information

WHY COMMERCIAL REAL ESTATE FIRMS ARE EMBRACING OFFICE 365. Find out how out-of-the-box Cloud services in Office 365 can help you grow your practice

WHY COMMERCIAL REAL ESTATE FIRMS ARE EMBRACING OFFICE 365. Find out how out-of-the-box Cloud services in Office 365 can help you grow your practice WHY COMMERCIAL REAL ESTATE FIRMS ARE EMBRACING OFFICE 365 Find out how out-of-the-box Cloud services in Office 365 can help you grow your practice INTRODUCTION COMMERCIAL REAL ESTATE FIRMS ARE JOINING

More information

Aconite Smart Solutions

Aconite Smart Solutions Aconite Smart Solutions PIN Management Services Contents PIN MANAGEMENT... 3 CURRENT CHALLENGES... 3 ACONITE PIN MANAGER SOLUTION... 4 OVERVIEW... 4 CENTRALISED PIN VAULT... 5 CUSTOMER PIN SELF SELECT

More information

SECURE SSO TO OFFICE 365 & OTHER CLOUD APPLICATIONS WITH A CLOUD-BASED AUTHENTICATION SOLUTION

SECURE SSO TO OFFICE 365 & OTHER CLOUD APPLICATIONS WITH A CLOUD-BASED AUTHENTICATION SOLUTION SECURE SSO TO OFFICE 365 & OTHER CLOUD APPLICATIONS WITH A CLOUD-BASED AUTHENTICATION SOLUTION ADVICE FOR SIMPLIFYING & SECURING YOUR DEPLOYMENT Evan O Regan, Director of Product Management for Authentication

More information

Office 365 GOVERNANCE

Office 365 GOVERNANCE Office 6 GOVERNANCE AGENDA INTRODUCTIONS GOVERNANCE APPROACH SHAREPOINT RELATED SERVICES QUESTIONS & ANSWERS Presenter Cory Williams Business Productivity Practice Manager SharePoint since 00 Office 6

More information

SOLUTION BRIEF CA MANAGEMENT CLOUD FOR MOBILITY. Overview of CA Management Cloud for Mobility

SOLUTION BRIEF CA MANAGEMENT CLOUD FOR MOBILITY. Overview of CA Management Cloud for Mobility SOLUTION BRIEF CA MANAGEMENT CLOUD FOR MOBILITY Overview of CA Management Cloud for Mobility CA Management Cloud for Mobility from CA Technologies enables companies to create and manage their mobile environments,

More information

Understanding Your Enterprise API Requirements

Understanding Your Enterprise API Requirements Understanding Your Enterprise Requirements Part 2: The 3 management platforms which architecture model fits your business? Strategically choosing the right management architecture model will ensure your

More information

Engaging campus experience with transaction solutions CACUBO annual meeting

Engaging campus experience with transaction solutions CACUBO annual meeting Engaging campus experience with transaction solutions 2017 CACUBO annual meeting Who we are 2 Dedicated to higher education 1,000+ Transaction solution clients Serve 2,100+ clients in 60 countries Staff

More information

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS Introduction Scribe Online is a leading integration platform as a service (ipaas) from Scribe Software. It has a multi-tenant architecture that scales by distributing

More information

PSD2: An Open Banking Catalyst

PSD2: An Open Banking Catalyst PSD2: An Open Banking Catalyst Leverage Open APIs to unlock new business opportunities It is short-sighted to treat the European Union s second Payment Services Directive (PSD2) and other European regulations

More information

PSD2 & Instant Payment

PSD2 & Instant Payment PSD2 & Instant Payment Presentation to Investors June 2017 Agenda Introduction PSD2/Instant Payment Impacts for Banks Worldline offering for Banks PSD2/Instant Payment Impacts for Merchants Worldline offering

More information

Proxama PIN Manager. Bringing PIN handling into the 21 st Century

Proxama PIN Manager. Bringing PIN handling into the 21 st Century Proxama PIN Manager Bringing PIN handling into the 21 st Century I am not a number I am a free man So said the The Prisoner in that 1960s cult TV show, but Personal Identification Number, or PIN, was adopted

More information

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS

SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS SCRIBE WHITE PAPER HOW SCRIBE ONLINE WORKS Introduction Scribe Online is a leading integration platform as a service (ipaas) from Scribe Software. It has a multi-tenant architecture that scales by distributing

More information

IBM Canada Ltd. Software Announcement A , dated July 26, 2016

IBM Canada Ltd. Software Announcement A , dated July 26, 2016 IBM Canada Ltd. Software Announcement A16-0026, dated July 26, 2016 IBM MaaS360 launches four new suites, offering key enterprise mobility management capabilities in purpose-focused bundles to improve

More information