SlideShare une entreprise Scribd logo
1  sur  35
Eway
Presenter: Supriti Panda, Mindfire Solutions
Date: 25/06/2014
About Me
Skills
Certifications
Connect me
PHP, Codeigniter, Zend Framework, Magento, Wordpress,
Javascript, Jquery, CSS3, Mysql, SOAP, REST
Contact me
ZEND PHP5.3
Magento Certified Developer - M70-101
LinkedIn : http://www.linkedin.com/in/supritipanda
Twitter : https://twitter.com/supritip
Facebook : https://www.facebook.com/supritipp
Email : supritip@mindfiresolutions.com / supritipp@gmail.com
Skype : mfsi_supritip
Presenter: Supriti Panda, Mindfire Solutions
AGENDA
→ What is Eway
→ Who are using Eway
→ Benefits of using Eway
→ APIS
→ Rapid 3.1
→ Services
→ Reporting
Presenter: Supriti Panda, Mindfire Solutions
Eway
→ A popular payment gateway used by Businesses of
Australia, New Zealand and United Kingdom.
→ 30-day money-back guarantee
→ Trusted by 15,000+ organisations
→ Expert global 24/7 support
→ Supports all major banks and carts
→ PCI-DSS Certified
Presenter: Supriti Panda, Mindfire Solutions
Eway
→ Go global with multicurrency payments
→ Easy online setup so you can go live quicker
→ Payment products tailored to your needs
→ Flexible reports to track your success
Presenter: Supriti Panda, Mindfire Solutions
Eway Clients
Presenter: Supriti Panda, Mindfire Solutions
Benefits of using Eway
→ Fast, instant processing and quick payments
→ 24/7/365 support
→ Straightforward / easy to use
→ Easy to set up
→ Recurring payments are a breeze
→ No merchant account? No worries!
→ Tools to help you sell more
→ Payment processed directly on your website
Presenter: Supriti Panda, Mindfire Solutions
Benefits of using Eway
→ Easy, comprehensive reports
→ Activate Beagle Fraud Alerts
→ Links to all major banks
→ Thorough and clear documentation
→ Straightforward API
→ Token payment service
→ Multiple-language compatibility
→ Full sandbox support
Presenter: Supriti Panda, Mindfire Solutions
APIS
→ Rapid 3.1
→ Direct Payments
→ Token Payments
→ Recurring Payments
→ Beagle Fraud Alerts Enterprise
→ Beagle Lite
→ 3-D Secure – Simple payment authorisation
→ Refunds
Presenter: Supriti Panda, Mindfire Solutions
Eway APIS
→ Stored Payments
→ PreAuth
→ 24-hour Query Service
Presenter: Supriti Panda, Mindfire Solutions
Rapid 3.1
→ Responsive Hosted Payments - create custom payment
pages based on responsive design principles to ensure
customers on various devices are presented with a
seamless checkout experience.
→ Refund Capability - save time implementing one API
instead of two, refunds can be processed within your own
application system.
→ Transaction types - support for Purchase or Recurring
transaction types to allow for transactions where the CVN
or 3-D Secure password may not be entered.
Presenter: Supriti Panda, Mindfire Solutions
Rapid 3.1
→ Beagle Verify - send a phone, SMS or email alert to your
customer at checkout to verify their identity.
→ Direct Connection - merchants with a certified PCI-DSS
compliant environment can request access to a server-side
connection to the eWAY payment platform.
Presenter: Supriti Panda, Mindfire Solutions
Rapid 3.1
Presenter: Supriti Panda, Mindfire Solutions
Direct Payments
Direct Payments allows merchants to host their own payment
pages, taking credit card payments without ever redirecting
customers away from their domain.
This can reassure customers and increase conversion rates.
The gateway URL is :
https://www.eway.com.au/gateway_cvn/xmlpayment.asp
Presenter: Supriti Panda, Mindfire Solutions
Direct Payments(Sample Request XML)
<ewaygateway>
<ewayCustomerID> 87654321 </ewayCustomerID>
<ewayTotalAmount> 10 </ewayTotalAmount>
<ewayCustomerFirstName> Jackie </ewayCustomerFirstName>
<ewayCustomerLastName> Chan </ewayCustomerLastName>
<ewayCustomerEmail> chan@webactive.com.au </ewayCustomerEmail>
<ewayCustomerAddress> 123 Sesame St </ewayCustomerAddress>
<ewayCustomerPostcode> 2345 </ewayCustomerPostcode>
<ewayCustomerInvoiceDescription> Red socks </ewayCustomerInvoiceDescription>
<ewayCustomerInvoiceRef> 0123 - abc </ewayCustomerInvoiceRef>
<ewayCardHoldersName> Jackie Chan </ewayCardHoldersName>
<ewayCardNumber> 1111222233334444 </ewayCardNumber>
<ewayCardExpiryMonth> 04 </ewayCardExpiryMonth>
<ewayCardExpiryYear> 09 </ewayCardExpiryYear>
<ewayTrxnNumber> 987654321 </ewayTrxnNumber>
<ewayOption1></ewayOption1>
<ewayOption2></ewayOption2>
<ewayOption3></ewayOption3>
<ewayCVN> 123 </ewayCVN>
</ewaygateway>
Presenter: Supriti Panda, Mindfire Solutions
Direct Payments(Sample Response XML)
<ewayresponse>
<ewayTrxnStatus>True</ewayTrxnStatus>
<ewayTrxnNumber>1010094</ewayTrxnNumber>
<ewayTrxnReference>987654321</ewayTrxnReference>
<ewayTrxnOption1/>
<ewayTrxnOption2/>
<ewayTrxnOption3/>
<ewayAuthCode>123456</ewayAuthCode>
<ewayReturnAmount>10</ewayReturnAmount>
<ewayTrxnError>00,Transaction Approved</ewayTrxnError>
</ewayresponse>
Presenter: Supriti Panda, Mindfire Solutions
SOAP Header
<soap:Header>
<eWAYHeader
xmlns="https://www.eway.com.au/gateway/managedpayment">
<eWAYCustomerID>string</eWAYCustomerID>
<Username>string</Username>
<Password>string</Password>
</eWAYHeader>
</soap:Header>
Presenter: Supriti Panda, Mindfire Solutions
Token Payments
Token Payments allows you to save the details of your
customers and bill them whenever they make new purchases.
Available methods:
1. CreateCustomer – save a cardholder's details and, optionally, process a
transaction
2. UpdateCustomer – overwrite the billing details of a saved cardholder
3. QueryCustomer – send a customer's ID to the gateway and receive their
details
Presenter: Supriti Panda, Mindfire Solutions
Token Payments
Available methods:
4. ProcessPayment – charge one of the credit cards saved by eWAY
5. ProcessPaymentWithCVN – charge one of the saved credit cards with a
Card Verification Number for enhanced security
6. QueryPayment – check the status of a previous transaction
7. ProcessPaymentWithBeagle – check the customer's IP address for
security purposes
8. QueryCustomerByReference – send a transaction number to the
gateway and receive the details of the transaction
Presenter: Supriti Panda, Mindfire Solutions
Recurring Payments
Recurring Payments is ideal for subscriptions or installments,
allowing you to automatically charge customers on a daily,
weekly, fortnightly or monthly basis.
Presenter: Supriti Panda, Mindfire Solutions
Beagle Fraud Alerts Enterprise
Beagle Fraud Alerts Enterprise is an enterprise-level alerting
system which utilises ReD's world-leading fraud prevention
engine to provide superior protection for your business.
Presenter: Supriti Panda, Mindfire Solutions
Beagle Lite
Beagle Lite uses GEO-IP rules to block or flag potential
fraudulent transactions. Rules are declared within MYeWAY
and notifications are sent via e-mail for any transactions that
do not pass the Anti-Fraud rules.
Presenter: Supriti Panda, Mindfire Solutions
Beagle (free) rules
Presenter: Supriti Panda, Mindfire Solutions
3-D Secure – Simple payment authorisation
3-D Secure provides an additional security measure for
customers and merchants. Customers with 3-D Secure
activated on their credit card will be redirected via HTML
FORM POST to a webpage hosted by their bank and asked to
enter a PIN, verifying their identity.
Presenter: Supriti Panda, Mindfire Solutions
Refunds
You can refund transactions without logging into eWAY –
refunds can be processed within your own application or
system. Simply pass the original transaction ID or reference
number to the refund gateway via XML along with the amount
to be refunded.
Presenter: Supriti Panda, Mindfire Solutions
Stored Payments
Stored Payments allows eWAY to store a transaction without
processing it until the merchant gives approval via MYeWAY.
This can be useful for merchants who are drop-shipping or
selling made-to-order goods.
Presenter: Supriti Panda, Mindfire Solutions
PreAuth
eWAY's PreAuth solution allows merchants to reserve funds
on a customer's credit card without charging it. They can then
login to MYeWAY and confirm the transaction at their
convenience. This service is perfect for merchants whose
prices are dependent on variable costs.
Presenter: Supriti Panda, Mindfire Solutions
24-hour Query Service
eWAY's Query Service allows you to check the status of any
transaction directly through your shopping cart, provided that
it was processed within the last 24 hours.
Available methods
Transaction24HourReportByInvoiceReference – Used to search for
transactions that occurred with a specific invoice reference within the last
24 hours.
Transaction24HourReportByInvoiceID – Used to search for transactions
that occurred with a specific invoice transaction ID within the last 24
hours.
Presenter: Supriti Panda, Mindfire Solutions
Batch Payments
If you have lots of cards to process, you don’t have to enter
them individually. With Batch Payments, you can upload the
card numbers as a CSV or Excel document, and they will all be
processed automatically.
Presenter: Supriti Panda, Mindfire Solutions
IVR - Interactive Voice Response
With eWAY’s IVR system, you can let your customers pay over
the phone and process their transactions in seconds. IVR is
short for Interactive Voice Response, which refers to an
automated system that customers can use to send or receive
information. You’ll have used IVR technology countless times,
such as when you call a mobile phone or electricity provider
and are asked to respond to questions by entering numbers
on your keypad.
Presenter: Supriti Panda, Mindfire Solutions
Reporting
→ Track your online payments
→ Know your customers
→ Locate your sales
→ Refine your data
→ Automate your systems
→ Export it in PDF or CSV
→ Manage and pay invoices
→ Additional user accounts
Presenter: Supriti Panda, Mindfire Solutions
Question and
Answer
Presenter: Supriti Panda, Mindfire Solutions
Thank you
Presenter: Supriti Panda, Mindfire Solutions
References
http://www.eway.com.au/developers/api/overview
https://www.eway.com.au/docs/api-documentation/token-payments-field-description.pdf?sfvrsn=2
http://www.eway.com.au/docs/api-documentation/rapid-3-0-documentation-au.pdf
http://www.eway.com.au/shared-demo/default.aspx
http://api-portal.anypoint.mulesoft.com/eway/api/eway-rapid-31-api?ref=apihub
http://www.eway.com.au/how-it-works/free-webinars
https://www.eway.com.au/pricing/popular-plans
www.mindfiresolutions.com
https://www.facebook.com/MindfireSolutions
http://www.linkedin.com/company/mindfire-solutions
http://twitter.com/mindfires

Contenu connexe

Plus de Mindfire Solutions (20)

Glimpse of Loops Vs Set
Glimpse of Loops Vs SetGlimpse of Loops Vs Set
Glimpse of Loops Vs Set
 
Oracle Sql Developer-Getting Started
Oracle Sql Developer-Getting StartedOracle Sql Developer-Getting Started
Oracle Sql Developer-Getting Started
 
Adaptive Layout In iOS 8
Adaptive Layout In iOS 8Adaptive Layout In iOS 8
Adaptive Layout In iOS 8
 
Introduction to Auto-layout : iOS/Mac
Introduction to Auto-layout : iOS/MacIntroduction to Auto-layout : iOS/Mac
Introduction to Auto-layout : iOS/Mac
 
LINQPad - utility Tool
LINQPad - utility ToolLINQPad - utility Tool
LINQPad - utility Tool
 
Get started with watch kit development
Get started with watch kit developmentGet started with watch kit development
Get started with watch kit development
 
Swift vs Objective-C
Swift vs Objective-CSwift vs Objective-C
Swift vs Objective-C
 
Material Design in Android
Material Design in AndroidMaterial Design in Android
Material Design in Android
 
Introduction to OData
Introduction to ODataIntroduction to OData
Introduction to OData
 
Ext js Part 2- MVC
Ext js Part 2- MVCExt js Part 2- MVC
Ext js Part 2- MVC
 
ExtJs Basic Part-1
ExtJs Basic Part-1ExtJs Basic Part-1
ExtJs Basic Part-1
 
Spring Security Introduction
Spring Security IntroductionSpring Security Introduction
Spring Security Introduction
 
Angular In Depth
Angular In DepthAngular In Depth
Angular In Depth
 
Django Models
Django ModelsDjango Models
Django Models
 
Django-Queryset
Django-QuerysetDjango-Queryset
Django-Queryset
 
Introduction to single page application with angular js
Introduction to single page application with angular jsIntroduction to single page application with angular js
Introduction to single page application with angular js
 
Bower Fundamentals
Bower FundamentalsBower Fundamentals
Bower Fundamentals
 
Digesting jQuery
Digesting jQueryDigesting jQuery
Digesting jQuery
 
Django CMS & Integrating it with django shop
Django CMS & Integrating it with django shopDjango CMS & Integrating it with django shop
Django CMS & Integrating it with django shop
 
Introduction to Maven
Introduction to MavenIntroduction to Maven
Introduction to Maven
 

Dernier

%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrainmasabamasaba
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplatePresentation.STUDIO
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrandmasabamasaba
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisamasabamasaba
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfonteinmasabamasaba
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...panagenda
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Hararemasabamasaba
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile EnvironmentVictorSzoltysek
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in sowetomasabamasaba
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...Jittipong Loespradit
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is insideshinachiaurasa2
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park masabamasaba
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...masabamasaba
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️Delhi Call girls
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...SelfMade bd
 

Dernier (20)

%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
%in Bahrain+277-882-255-28 abortion pills for sale in Bahrain
 
AI & Machine Learning Presentation Template
AI & Machine Learning Presentation TemplateAI & Machine Learning Presentation Template
AI & Machine Learning Presentation Template
 
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICECHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
CHEAP Call Girls in Pushp Vihar (-DELHI )🔝 9953056974🔝(=)/CALL GIRLS SERVICE
 
%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand%in Midrand+277-882-255-28 abortion pills for sale in midrand
%in Midrand+277-882-255-28 abortion pills for sale in midrand
 
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa%in tembisa+277-882-255-28 abortion pills for sale in tembisa
%in tembisa+277-882-255-28 abortion pills for sale in tembisa
 
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
%in Stilfontein+277-882-255-28 abortion pills for sale in Stilfontein
 
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
W01_panagenda_Navigating-the-Future-with-The-Hitchhikers-Guide-to-Notes-and-D...
 
%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare%in Harare+277-882-255-28 abortion pills for sale in Harare
%in Harare+277-882-255-28 abortion pills for sale in Harare
 
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT  - Elevating Productivity in Today's Agile EnvironmentHarnessing ChatGPT  - Elevating Productivity in Today's Agile Environment
Harnessing ChatGPT - Elevating Productivity in Today's Agile Environment
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto%in Soweto+277-882-255-28 abortion pills for sale in soweto
%in Soweto+277-882-255-28 abortion pills for sale in soweto
 
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital TransformationWSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
WSO2Con2024 - WSO2's IAM Vision: Identity-Led Digital Transformation
 
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
MarTech Trend 2024 Book : Marketing Technology Trends (2024 Edition) How Data...
 
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With SimplicityWSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
WSO2Con2024 - Enabling Transactional System's Exponential Growth With Simplicity
 
The title is not connected to what is inside
The title is not connected to what is insideThe title is not connected to what is inside
The title is not connected to what is inside
 
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park %in ivory park+277-882-255-28 abortion pills for sale in ivory park
%in ivory park+277-882-255-28 abortion pills for sale in ivory park
 
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
WSO2CON 2024 - Cloud Native Middleware: Domain-Driven Design, Cell-Based Arch...
 
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
%+27788225528 love spells in new york Psychic Readings, Attraction spells,Bri...
 
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
call girls in Vaishali (Ghaziabad) 🔝 >༒8448380779 🔝 genuine Escort Service 🔝✔️✔️
 
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
Crypto Cloud Review - How To Earn Up To $500 Per DAY Of Bitcoin 100% On AutoP...
 

Eway - Another Payment Gateway

  • 1. Eway Presenter: Supriti Panda, Mindfire Solutions Date: 25/06/2014
  • 2. About Me Skills Certifications Connect me PHP, Codeigniter, Zend Framework, Magento, Wordpress, Javascript, Jquery, CSS3, Mysql, SOAP, REST Contact me ZEND PHP5.3 Magento Certified Developer - M70-101 LinkedIn : http://www.linkedin.com/in/supritipanda Twitter : https://twitter.com/supritip Facebook : https://www.facebook.com/supritipp Email : supritip@mindfiresolutions.com / supritipp@gmail.com Skype : mfsi_supritip Presenter: Supriti Panda, Mindfire Solutions
  • 3. AGENDA → What is Eway → Who are using Eway → Benefits of using Eway → APIS → Rapid 3.1 → Services → Reporting Presenter: Supriti Panda, Mindfire Solutions
  • 4. Eway → A popular payment gateway used by Businesses of Australia, New Zealand and United Kingdom. → 30-day money-back guarantee → Trusted by 15,000+ organisations → Expert global 24/7 support → Supports all major banks and carts → PCI-DSS Certified Presenter: Supriti Panda, Mindfire Solutions
  • 5. Eway → Go global with multicurrency payments → Easy online setup so you can go live quicker → Payment products tailored to your needs → Flexible reports to track your success Presenter: Supriti Panda, Mindfire Solutions
  • 6. Eway Clients Presenter: Supriti Panda, Mindfire Solutions
  • 7. Benefits of using Eway → Fast, instant processing and quick payments → 24/7/365 support → Straightforward / easy to use → Easy to set up → Recurring payments are a breeze → No merchant account? No worries! → Tools to help you sell more → Payment processed directly on your website Presenter: Supriti Panda, Mindfire Solutions
  • 8. Benefits of using Eway → Easy, comprehensive reports → Activate Beagle Fraud Alerts → Links to all major banks → Thorough and clear documentation → Straightforward API → Token payment service → Multiple-language compatibility → Full sandbox support Presenter: Supriti Panda, Mindfire Solutions
  • 9. APIS → Rapid 3.1 → Direct Payments → Token Payments → Recurring Payments → Beagle Fraud Alerts Enterprise → Beagle Lite → 3-D Secure – Simple payment authorisation → Refunds Presenter: Supriti Panda, Mindfire Solutions
  • 10. Eway APIS → Stored Payments → PreAuth → 24-hour Query Service Presenter: Supriti Panda, Mindfire Solutions
  • 11. Rapid 3.1 → Responsive Hosted Payments - create custom payment pages based on responsive design principles to ensure customers on various devices are presented with a seamless checkout experience. → Refund Capability - save time implementing one API instead of two, refunds can be processed within your own application system. → Transaction types - support for Purchase or Recurring transaction types to allow for transactions where the CVN or 3-D Secure password may not be entered. Presenter: Supriti Panda, Mindfire Solutions
  • 12. Rapid 3.1 → Beagle Verify - send a phone, SMS or email alert to your customer at checkout to verify their identity. → Direct Connection - merchants with a certified PCI-DSS compliant environment can request access to a server-side connection to the eWAY payment platform. Presenter: Supriti Panda, Mindfire Solutions
  • 13. Rapid 3.1 Presenter: Supriti Panda, Mindfire Solutions
  • 14. Direct Payments Direct Payments allows merchants to host their own payment pages, taking credit card payments without ever redirecting customers away from their domain. This can reassure customers and increase conversion rates. The gateway URL is : https://www.eway.com.au/gateway_cvn/xmlpayment.asp Presenter: Supriti Panda, Mindfire Solutions
  • 15. Direct Payments(Sample Request XML) <ewaygateway> <ewayCustomerID> 87654321 </ewayCustomerID> <ewayTotalAmount> 10 </ewayTotalAmount> <ewayCustomerFirstName> Jackie </ewayCustomerFirstName> <ewayCustomerLastName> Chan </ewayCustomerLastName> <ewayCustomerEmail> chan@webactive.com.au </ewayCustomerEmail> <ewayCustomerAddress> 123 Sesame St </ewayCustomerAddress> <ewayCustomerPostcode> 2345 </ewayCustomerPostcode> <ewayCustomerInvoiceDescription> Red socks </ewayCustomerInvoiceDescription> <ewayCustomerInvoiceRef> 0123 - abc </ewayCustomerInvoiceRef> <ewayCardHoldersName> Jackie Chan </ewayCardHoldersName> <ewayCardNumber> 1111222233334444 </ewayCardNumber> <ewayCardExpiryMonth> 04 </ewayCardExpiryMonth> <ewayCardExpiryYear> 09 </ewayCardExpiryYear> <ewayTrxnNumber> 987654321 </ewayTrxnNumber> <ewayOption1></ewayOption1> <ewayOption2></ewayOption2> <ewayOption3></ewayOption3> <ewayCVN> 123 </ewayCVN> </ewaygateway> Presenter: Supriti Panda, Mindfire Solutions
  • 16. Direct Payments(Sample Response XML) <ewayresponse> <ewayTrxnStatus>True</ewayTrxnStatus> <ewayTrxnNumber>1010094</ewayTrxnNumber> <ewayTrxnReference>987654321</ewayTrxnReference> <ewayTrxnOption1/> <ewayTrxnOption2/> <ewayTrxnOption3/> <ewayAuthCode>123456</ewayAuthCode> <ewayReturnAmount>10</ewayReturnAmount> <ewayTrxnError>00,Transaction Approved</ewayTrxnError> </ewayresponse> Presenter: Supriti Panda, Mindfire Solutions
  • 18. Token Payments Token Payments allows you to save the details of your customers and bill them whenever they make new purchases. Available methods: 1. CreateCustomer – save a cardholder's details and, optionally, process a transaction 2. UpdateCustomer – overwrite the billing details of a saved cardholder 3. QueryCustomer – send a customer's ID to the gateway and receive their details Presenter: Supriti Panda, Mindfire Solutions
  • 19. Token Payments Available methods: 4. ProcessPayment – charge one of the credit cards saved by eWAY 5. ProcessPaymentWithCVN – charge one of the saved credit cards with a Card Verification Number for enhanced security 6. QueryPayment – check the status of a previous transaction 7. ProcessPaymentWithBeagle – check the customer's IP address for security purposes 8. QueryCustomerByReference – send a transaction number to the gateway and receive the details of the transaction Presenter: Supriti Panda, Mindfire Solutions
  • 20. Recurring Payments Recurring Payments is ideal for subscriptions or installments, allowing you to automatically charge customers on a daily, weekly, fortnightly or monthly basis. Presenter: Supriti Panda, Mindfire Solutions
  • 21. Beagle Fraud Alerts Enterprise Beagle Fraud Alerts Enterprise is an enterprise-level alerting system which utilises ReD's world-leading fraud prevention engine to provide superior protection for your business. Presenter: Supriti Panda, Mindfire Solutions
  • 22. Beagle Lite Beagle Lite uses GEO-IP rules to block or flag potential fraudulent transactions. Rules are declared within MYeWAY and notifications are sent via e-mail for any transactions that do not pass the Anti-Fraud rules. Presenter: Supriti Panda, Mindfire Solutions
  • 23. Beagle (free) rules Presenter: Supriti Panda, Mindfire Solutions
  • 24. 3-D Secure – Simple payment authorisation 3-D Secure provides an additional security measure for customers and merchants. Customers with 3-D Secure activated on their credit card will be redirected via HTML FORM POST to a webpage hosted by their bank and asked to enter a PIN, verifying their identity. Presenter: Supriti Panda, Mindfire Solutions
  • 25. Refunds You can refund transactions without logging into eWAY – refunds can be processed within your own application or system. Simply pass the original transaction ID or reference number to the refund gateway via XML along with the amount to be refunded. Presenter: Supriti Panda, Mindfire Solutions
  • 26. Stored Payments Stored Payments allows eWAY to store a transaction without processing it until the merchant gives approval via MYeWAY. This can be useful for merchants who are drop-shipping or selling made-to-order goods. Presenter: Supriti Panda, Mindfire Solutions
  • 27. PreAuth eWAY's PreAuth solution allows merchants to reserve funds on a customer's credit card without charging it. They can then login to MYeWAY and confirm the transaction at their convenience. This service is perfect for merchants whose prices are dependent on variable costs. Presenter: Supriti Panda, Mindfire Solutions
  • 28. 24-hour Query Service eWAY's Query Service allows you to check the status of any transaction directly through your shopping cart, provided that it was processed within the last 24 hours. Available methods Transaction24HourReportByInvoiceReference – Used to search for transactions that occurred with a specific invoice reference within the last 24 hours. Transaction24HourReportByInvoiceID – Used to search for transactions that occurred with a specific invoice transaction ID within the last 24 hours. Presenter: Supriti Panda, Mindfire Solutions
  • 29. Batch Payments If you have lots of cards to process, you don’t have to enter them individually. With Batch Payments, you can upload the card numbers as a CSV or Excel document, and they will all be processed automatically. Presenter: Supriti Panda, Mindfire Solutions
  • 30. IVR - Interactive Voice Response With eWAY’s IVR system, you can let your customers pay over the phone and process their transactions in seconds. IVR is short for Interactive Voice Response, which refers to an automated system that customers can use to send or receive information. You’ll have used IVR technology countless times, such as when you call a mobile phone or electricity provider and are asked to respond to questions by entering numbers on your keypad. Presenter: Supriti Panda, Mindfire Solutions
  • 31. Reporting → Track your online payments → Know your customers → Locate your sales → Refine your data → Automate your systems → Export it in PDF or CSV → Manage and pay invoices → Additional user accounts Presenter: Supriti Panda, Mindfire Solutions
  • 32. Question and Answer Presenter: Supriti Panda, Mindfire Solutions
  • 33. Thank you Presenter: Supriti Panda, Mindfire Solutions