@@ -83,11 +83,11 @@ There are some sample unit tests that are located in the test directory. They
8383capture basic auth/capture (product purchase) functionality, which most
8484integrations are looking to get started with.
8585
86- ###Charge a credit card
86+ ### Charge a credit card
8787
8888A transaction to authorize and charge a credit card payment can be performed with
8989the following code (JSP) :
90- ```` jsp
90+ ``` jsp
9191 <%@ page import = "java.math.BigDecimal" %>
9292 <%@ page import = "java.util.Map" %>
9393 <%@ page import = "net.authorize.Environment" %>
@@ -151,12 +151,12 @@ the following code (JSP) :
151151 }
152152 }
153153 %>
154- ````
154+ ```
155155
156- ###Capture a Previously Authorized Amount
156+ ### Capture a Previously Authorized Amount
157157A transaction to capture funds for a transaction that was previously authorized
158158using ` authOnlyTransaction ` can be performed with the following code (JSP) :
159- ```` jsp
159+ ``` jsp
160160 <%@ page import = "java.math.BigDecimal" %>
161161 <%@ page import = "net.authorize.Environment" %>
162162 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -211,7 +211,7 @@ using `authOnlyTransaction` can be performed with the following code (JSP) :
211211 }
212212 }
213213 %>
214- ````
214+ ```
215215
216216Test Code - Recurring Billing
217217=============================================
@@ -221,12 +221,12 @@ Test Code - Recurring Billing
221221There are some sample unit tests that are located in the test directory.
222222They capture basic create/update/cancel/get subscription recurring billing requests.
223223
224- ###Create a Subscription
224+ ### Create a Subscription
225225For subscriptions with a monthly interval, whose payments begin on the 31st of a month,
226226payments for months with fewer than 31 days occur on the last day of the month.
227227
228228A transaction to create a new subscription can be performed with the following code (JSP) :
229- ```` jsp
229+ ``` jsp
230230 <%@ page import = "java.math.BigDecimal" %>
231231 <%@ page import = "net.authorize.Environment" %>
232232 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -313,7 +313,7 @@ A transaction to create a new subscription can be performed with the following c
313313 }
314314 }
315315 %>
316- ````
316+ ```
317317
318318Test Code - PayPal Express Checkout
319319=============================================
@@ -325,13 +325,13 @@ The following calls are createTransactionRequest calls with PayPal-specific fiel
325325You must first sign up for the service in the [ Authorize.Net Merchant Interface] ( https://account.authorize.net ) .
326326The sign up page is at Accounts > Digital Payment Solutions.
327327
328- ###Authorization Only
328+ ### Authorization Only
329329An Authorization Only request notifies PayPal that an authorization has been initiated
330330but does not complete the authorization. It returns a secure URL with a token appended to it.
331331The purpose of this token is to identify the transaction when the customer is redirected to PayPal.
332332
333333A transaction of this type can be performed with the following code (JSP) :
334- ```` jsp
334+ ``` jsp
335335 <%@ page import = "java.math.BigDecimal" %>
336336 <%@ page import = "net.authorize.Environment" %>
337337 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -404,17 +404,17 @@ A transaction of this type can be performed with the following code (JSP) :
404404 }
405405 }
406406 %>
407- ````
407+ ```
408408
409- ###Authorization and Capture
409+ ### Authorization and Capture
410410This type of transaction is the most common and is the default payment gateway transaction type.
411411Like the Authorization Only request, it notifies PayPal that an Authorization and Capture transaction
412412has been initiated, but does not complete the request. It also returns a secure URL with a token
413413appended to it. The purpose of this token is to identify the transaction when the customer is
414414redirected to PayPal.
415415
416416A transaction of this type can be performed with the following code (JSP) :
417- ```` jsp
417+ ``` jsp
418418 <%@ page import = "java.math.BigDecimal" %>
419419 <%@ page import = "net.authorize.Environment" %>
420420 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -487,7 +487,7 @@ A transaction of this type can be performed with the following code (JSP) :
487487 }
488488 }
489489 %>
490- ````
490+ ```
491491
492492Test Code - Customer Profiles
493493==============================================
@@ -497,13 +497,13 @@ There are some sample unit tests that are located in the test directory. They
497497capture requests that create, delete, get, and update customer profile
498498information, including payment and address information.
499499
500- ###Create Customer Profile
500+ ### Create Customer Profile
501501Use this function to create a new customer profile including any customer
502502payment profiles and customer shipping addresses. The createCustomerProfileResponse
503503field returns the assigned customerProfileId element for the created profile.
504504
505505A transaction of this type can be performed with the following code (JSP) :
506- ```` jsp
506+ ``` jsp
507507 <%@ page import = "java.math.BigDecimal" %>
508508 <%@ page import = "net.authorize.Environment" %>
509509 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -589,7 +589,7 @@ A transaction of this type can be performed with the following code (JSP) :
589589 }
590590 }
591591 %>
592- ````
592+ ```
593593
594594Test Code - Transaction Reporting
595595==============================================
@@ -598,11 +598,11 @@ Test Code - Transaction Reporting
598598There are some sample unit tests that are located in the test directory. They
599599capture requests that retrieve transaction data that was processed by Authorize.Net.
600600
601- ###Get Transaction Details
601+ ### Get Transaction Details
602602Use this function to get detailed information about a specific transaction.
603603
604604A transaction of this type can be performed with the following code (JSP) :
605- ```` jsp
605+ ``` jsp
606606 <%@ page import = "java.math.BigDecimal" %>
607607 <%@ page import = "net.authorize.Environment" %>
608608 <%@ page import = "net.authorize.api.contract.v1.*" %>
@@ -652,7 +652,7 @@ A transaction of this type can be performed with the following code (JSP) :
652652 }
653653 }
654654 %>
655- ````
655+ ```
656656
657657Test Code - Apple Pay
658658==============================================
@@ -661,15 +661,15 @@ Test Code - Apple Pay
661661Apple Pay support is available through the SDK using our new model
662662and code samples.
663663
664- ###Create a Apple Pay Transaction
664+ ### Create a Apple Pay Transaction
665665Use this function to create an Authorize.Net payment transaction request
666666using Apple Pay Opaque data in place of card data.
667667
668668** _ Data Value (Apple Pay Blob) is one-time use value._ **
669669
670670A transaction of this type can be performed with the following code (JSP) :
671671
672- ```` jsp
672+ ``` jsp
673673<%@ page import = "java.math.BigDecimal" %>
674674<%@ page import = "java.util.Map" %>
675675<%@ page import = "net.authorize.Environment" %>
@@ -724,7 +724,7 @@ A transaction of this type can be performed with the following code (JSP) :
724724 }
725725
726726%>
727- ````
727+ ```
728728
729729
730730Test Code - Visa Checkout
@@ -734,14 +734,14 @@ Test Code - Visa Checkout
734734Visa Checkout support is also available through the SDK using our new model
735735and code samples.
736736
737- ###Create a Visa Checkout Transaction
737+ ### Create a Visa Checkout Transaction
738738Use this function to create an Authorize.Net payment transaction request
739739using Visa Checkout data in place of card data.
740740
741741** _ Data Value, Data Key and Call ID are one-time use values._ **
742742
743743A transaction of this type can be performed with the following code (JSP) :
744- ```` jsp
744+ ``` jsp
745745 <%@ page import = "java.math.BigDecimal" %>
746746 <%@ page import = "java.util.Map" %>
747747 <%@ page import = "net.authorize.Environment" %>
@@ -816,4 +816,4 @@ A transaction of this type can be performed with the following code (JSP) :
816816 }
817817 }
818818 %>
819- ````
819+ ```
0 commit comments