n8_activemerchant 1.9.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- data/CHANGELOG +574 -0
- data/CONTRIBUTORS +175 -0
- data/MIT-LICENSE +20 -0
- data/README.rdoc +151 -0
- data/gem-public_cert.pem +20 -0
- data/lib/active_merchant.rb +49 -0
- data/lib/active_merchant/billing.rb +9 -0
- data/lib/active_merchant/billing/avs_result.rb +98 -0
- data/lib/active_merchant/billing/base.rb +57 -0
- data/lib/active_merchant/billing/check.rb +68 -0
- data/lib/active_merchant/billing/credit_card.rb +161 -0
- data/lib/active_merchant/billing/credit_card_formatting.rb +21 -0
- data/lib/active_merchant/billing/credit_card_methods.rb +125 -0
- data/lib/active_merchant/billing/cvv_result.rb +38 -0
- data/lib/active_merchant/billing/expiry_date.rb +34 -0
- data/lib/active_merchant/billing/gateway.rb +169 -0
- data/lib/active_merchant/billing/gateways.rb +18 -0
- data/lib/active_merchant/billing/gateways/authorize_net.rb +654 -0
- data/lib/active_merchant/billing/gateways/authorize_net_cim.rb +736 -0
- data/lib/active_merchant/billing/gateways/beanstream.rb +102 -0
- data/lib/active_merchant/billing/gateways/beanstream/beanstream_core.rb +244 -0
- data/lib/active_merchant/billing/gateways/beanstream_interac.rb +54 -0
- data/lib/active_merchant/billing/gateways/bogus.rb +102 -0
- data/lib/active_merchant/billing/gateways/braintree.rb +17 -0
- data/lib/active_merchant/billing/gateways/braintree/braintree_common.rb +9 -0
- data/lib/active_merchant/billing/gateways/braintree_blue.rb +210 -0
- data/lib/active_merchant/billing/gateways/braintree_orange.rb +17 -0
- data/lib/active_merchant/billing/gateways/card_stream.rb +230 -0
- data/lib/active_merchant/billing/gateways/cyber_source.rb +406 -0
- data/lib/active_merchant/billing/gateways/data_cash.rb +593 -0
- data/lib/active_merchant/billing/gateways/efsnet.rb +229 -0
- data/lib/active_merchant/billing/gateways/elavon.rb +134 -0
- data/lib/active_merchant/billing/gateways/epay.rb +263 -0
- data/lib/active_merchant/billing/gateways/eway.rb +277 -0
- data/lib/active_merchant/billing/gateways/exact.rb +222 -0
- data/lib/active_merchant/billing/gateways/first_pay.rb +172 -0
- data/lib/active_merchant/billing/gateways/garanti.rb +222 -0
- data/lib/active_merchant/billing/gateways/inspire.rb +221 -0
- data/lib/active_merchant/billing/gateways/instapay.rb +164 -0
- data/lib/active_merchant/billing/gateways/iridium.rb +253 -0
- data/lib/active_merchant/billing/gateways/jetpay.rb +270 -0
- data/lib/active_merchant/billing/gateways/linkpoint.rb +449 -0
- data/lib/active_merchant/billing/gateways/merchant_e_solutions.rb +154 -0
- data/lib/active_merchant/billing/gateways/merchant_ware.rb +283 -0
- data/lib/active_merchant/billing/gateways/modern_payments.rb +36 -0
- data/lib/active_merchant/billing/gateways/modern_payments_cim.rb +220 -0
- data/lib/active_merchant/billing/gateways/moneris.rb +205 -0
- data/lib/active_merchant/billing/gateways/net_registry.rb +189 -0
- data/lib/active_merchant/billing/gateways/netaxept.rb +234 -0
- data/lib/active_merchant/billing/gateways/netbilling.rb +168 -0
- data/lib/active_merchant/billing/gateways/ogone.rb +279 -0
- data/lib/active_merchant/billing/gateways/pay_junction.rb +392 -0
- data/lib/active_merchant/billing/gateways/pay_secure.rb +120 -0
- data/lib/active_merchant/billing/gateways/paybox_direct.rb +203 -0
- data/lib/active_merchant/billing/gateways/payflow.rb +236 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_common_api.rb +207 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_express_response.rb +39 -0
- data/lib/active_merchant/billing/gateways/payflow/payflow_response.rb +13 -0
- data/lib/active_merchant/billing/gateways/payflow_express.rb +138 -0
- data/lib/active_merchant/billing/gateways/payflow_express_uk.rb +15 -0
- data/lib/active_merchant/billing/gateways/payflow_uk.rb +21 -0
- data/lib/active_merchant/billing/gateways/payment_express.rb +230 -0
- data/lib/active_merchant/billing/gateways/paypal.rb +121 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_common_api.rb +326 -0
- data/lib/active_merchant/billing/gateways/paypal/paypal_express_response.rb +38 -0
- data/lib/active_merchant/billing/gateways/paypal_ca.rb +13 -0
- data/lib/active_merchant/billing/gateways/paypal_express.rb +145 -0
- data/lib/active_merchant/billing/gateways/paypal_express_common.rb +20 -0
- data/lib/active_merchant/billing/gateways/paysimple/paysimple.rb +333 -0
- data/lib/active_merchant/billing/gateways/paysimple/usaepay.wsdl +1596 -0
- data/lib/active_merchant/billing/gateways/plugnpay.rb +292 -0
- data/lib/active_merchant/billing/gateways/psigate.rb +214 -0
- data/lib/active_merchant/billing/gateways/psl_card.rb +304 -0
- data/lib/active_merchant/billing/gateways/quickpay.rb +213 -0
- data/lib/active_merchant/billing/gateways/realex.rb +200 -0
- data/lib/active_merchant/billing/gateways/sage.rb +146 -0
- data/lib/active_merchant/billing/gateways/sage/sage_bankcard.rb +88 -0
- data/lib/active_merchant/billing/gateways/sage/sage_core.rb +116 -0
- data/lib/active_merchant/billing/gateways/sage/sage_virtual_check.rb +97 -0
- data/lib/active_merchant/billing/gateways/sage_pay.rb +315 -0
- data/lib/active_merchant/billing/gateways/sallie_mae.rb +144 -0
- data/lib/active_merchant/billing/gateways/secure_net.rb +330 -0
- data/lib/active_merchant/billing/gateways/secure_pay.rb +31 -0
- data/lib/active_merchant/billing/gateways/secure_pay_au.rb +157 -0
- data/lib/active_merchant/billing/gateways/secure_pay_tech.rb +113 -0
- data/lib/active_merchant/billing/gateways/skip_jack.rb +453 -0
- data/lib/active_merchant/billing/gateways/smart_ps.rb +265 -0
- data/lib/active_merchant/billing/gateways/trans_first.rb +127 -0
- data/lib/active_merchant/billing/gateways/transax.rb +25 -0
- data/lib/active_merchant/billing/gateways/trust_commerce.rb +418 -0
- data/lib/active_merchant/billing/gateways/usa_epay.rb +194 -0
- data/lib/active_merchant/billing/gateways/usa_epay_soap.rb +154 -0
- data/lib/active_merchant/billing/gateways/verifi.rb +228 -0
- data/lib/active_merchant/billing/gateways/viaklix.rb +189 -0
- data/lib/active_merchant/billing/gateways/wirecard.rb +318 -0
- data/lib/active_merchant/billing/integrations.rb +17 -0
- data/lib/active_merchant/billing/integrations/action_view_helper.rb +68 -0
- data/lib/active_merchant/billing/integrations/bogus.rb +23 -0
- data/lib/active_merchant/billing/integrations/bogus/helper.rb +17 -0
- data/lib/active_merchant/billing/integrations/bogus/notification.rb +11 -0
- data/lib/active_merchant/billing/integrations/bogus/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/chronopay.rb +23 -0
- data/lib/active_merchant/billing/integrations/chronopay/helper.rb +120 -0
- data/lib/active_merchant/billing/integrations/chronopay/notification.rb +158 -0
- data/lib/active_merchant/billing/integrations/chronopay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/direc_pay.rb +41 -0
- data/lib/active_merchant/billing/integrations/direc_pay/helper.rb +188 -0
- data/lib/active_merchant/billing/integrations/direc_pay/notification.rb +76 -0
- data/lib/active_merchant/billing/integrations/direc_pay/return.rb +32 -0
- data/lib/active_merchant/billing/integrations/direc_pay/status.rb +37 -0
- data/lib/active_merchant/billing/integrations/gestpay.rb +25 -0
- data/lib/active_merchant/billing/integrations/gestpay/common.rb +42 -0
- data/lib/active_merchant/billing/integrations/gestpay/helper.rb +70 -0
- data/lib/active_merchant/billing/integrations/gestpay/notification.rb +85 -0
- data/lib/active_merchant/billing/integrations/gestpay/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/helper.rb +96 -0
- data/lib/active_merchant/billing/integrations/hi_trust.rb +27 -0
- data/lib/active_merchant/billing/integrations/hi_trust/helper.rb +58 -0
- data/lib/active_merchant/billing/integrations/hi_trust/notification.rb +59 -0
- data/lib/active_merchant/billing/integrations/hi_trust/return.rb +67 -0
- data/lib/active_merchant/billing/integrations/nochex.rb +88 -0
- data/lib/active_merchant/billing/integrations/nochex/helper.rb +68 -0
- data/lib/active_merchant/billing/integrations/nochex/notification.rb +94 -0
- data/lib/active_merchant/billing/integrations/nochex/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/notification.rb +62 -0
- data/lib/active_merchant/billing/integrations/paypal.rb +39 -0
- data/lib/active_merchant/billing/integrations/paypal/helper.rb +119 -0
- data/lib/active_merchant/billing/integrations/paypal/notification.rb +154 -0
- data/lib/active_merchant/billing/integrations/paypal/return.rb +10 -0
- data/lib/active_merchant/billing/integrations/quickpay.rb +17 -0
- data/lib/active_merchant/billing/integrations/quickpay/helper.rb +72 -0
- data/lib/active_merchant/billing/integrations/quickpay/notification.rb +74 -0
- data/lib/active_merchant/billing/integrations/return.rb +37 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form.rb +37 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/encryption.rb +33 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/helper.rb +109 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/notification.rb +204 -0
- data/lib/active_merchant/billing/integrations/sage_pay_form/return.rb +27 -0
- data/lib/active_merchant/billing/integrations/two_checkout.rb +23 -0
- data/lib/active_merchant/billing/integrations/two_checkout/helper.rb +59 -0
- data/lib/active_merchant/billing/integrations/two_checkout/notification.rb +114 -0
- data/lib/active_merchant/billing/integrations/two_checkout/return.rb +17 -0
- data/lib/active_merchant/billing/response.rb +32 -0
- data/lib/active_merchant/common.rb +14 -0
- data/lib/active_merchant/common/connection.rb +162 -0
- data/lib/active_merchant/common/country.rb +328 -0
- data/lib/active_merchant/common/error.rb +26 -0
- data/lib/active_merchant/common/post_data.rb +24 -0
- data/lib/active_merchant/common/posts_data.rb +61 -0
- data/lib/active_merchant/common/requires_parameters.rb +16 -0
- data/lib/active_merchant/common/utils.rb +18 -0
- data/lib/active_merchant/common/validateable.rb +76 -0
- data/lib/active_merchant/version.rb +3 -0
- data/lib/activemerchant.rb +1 -0
- data/lib/certs/cacert.pem +7815 -0
- data/lib/support/gateway_support.rb +58 -0
- data/lib/support/outbound_hosts.rb +25 -0
- metadata +270 -0
|
@@ -0,0 +1,1596 @@
|
|
|
1
|
+
<?xml version='1.0' encoding='UTF-8'?>
|
|
2
|
+
|
|
3
|
+
<!-- USAePay Soap Interface - Beta 6 (RPC) -->
|
|
4
|
+
<!-- WSDL file generated painstakingly by hand -->
|
|
5
|
+
|
|
6
|
+
<definitions name="usaepay" targetNamespace="urn:usaepay" xmlns:typens="urn:usaepay" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/" xmlns:soapenc="http://schemas.xmlsoap.org/soap/encoding/" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns="http://schemas.xmlsoap.org/wsdl/">
|
|
7
|
+
<types>
|
|
8
|
+
<xsd:schema xmlns="http://www.w3.org/2001/XMLSchema" targetNamespace="urn:usaepay">
|
|
9
|
+
<xsd:complexType name="ueSecurityToken">
|
|
10
|
+
<xsd:all>
|
|
11
|
+
<xsd:element name="ClientIP" type="xsd:string"/>
|
|
12
|
+
<xsd:element name="PinHash" type="typens:ueHash"/>
|
|
13
|
+
<xsd:element name="SourceKey" type="xsd:string"/>
|
|
14
|
+
</xsd:all>
|
|
15
|
+
</xsd:complexType>
|
|
16
|
+
<xsd:complexType name="CustomerObject">
|
|
17
|
+
<xsd:all>
|
|
18
|
+
<xsd:element name="Amount" type="xsd:double"/>
|
|
19
|
+
<xsd:element name="BillingAddress" type="typens:Address"/>
|
|
20
|
+
<xsd:element name="CustNum" type="xsd:string"/>
|
|
21
|
+
<xsd:element name="CheckData" type="typens:CheckData"/>
|
|
22
|
+
<xsd:element name="CreditCardData" type="typens:CreditCardData"/>
|
|
23
|
+
<xsd:element name="CustomData" type="xsd:string"/>
|
|
24
|
+
<xsd:element name="CustomerID" type="xsd:string"/>
|
|
25
|
+
<xsd:element name="Description" type="xsd:string"/>
|
|
26
|
+
<xsd:element name="Enabled" type="xsd:boolean"/>
|
|
27
|
+
<xsd:element name="Next" type="xsd:string"/>
|
|
28
|
+
<xsd:element name="Notes" type="xsd:string"/>
|
|
29
|
+
<xsd:element name="NumLeft" type="xsd:integer"/>
|
|
30
|
+
<xsd:element name="OrderID" type="xsd:string"/>
|
|
31
|
+
<xsd:element name="ReceiptNote" type="xsd:string"/>
|
|
32
|
+
<xsd:element name="Schedule" type="xsd:string"/>
|
|
33
|
+
<xsd:element name="SendReceipt" type="xsd:boolean"/>
|
|
34
|
+
<xsd:element name="Source" type="xsd:string"/>
|
|
35
|
+
<xsd:element name="User" type="xsd:string"/>
|
|
36
|
+
</xsd:all>
|
|
37
|
+
</xsd:complexType>
|
|
38
|
+
<xsd:complexType name="PaymentMethod">
|
|
39
|
+
<xsd:all>
|
|
40
|
+
<xsd:element name="CheckData" type="typens:CheckData"/>
|
|
41
|
+
<xsd:element name="CreditCardData" type="typens:CreditCardData"/>
|
|
42
|
+
<xsd:element name="Expires" type="xsd:string"/>
|
|
43
|
+
<xsd:element name="MethodID" type="xsd:integer"/>
|
|
44
|
+
<xsd:element name="MethodName" type="xsd:string"/>
|
|
45
|
+
<xsd:element name="SecondarySort" type="xsd:integer"/>
|
|
46
|
+
</xsd:all>
|
|
47
|
+
</xsd:complexType>
|
|
48
|
+
<xsd:complexType name="MerchantApplicationObject">
|
|
49
|
+
<xsd:all>
|
|
50
|
+
<xsd:element name="AltEmail" type="xsd:string"/>
|
|
51
|
+
<xsd:element name="billing_Account" type="xsd:string"/>
|
|
52
|
+
<xsd:element name="billing_Bank" type="xsd:string"/>
|
|
53
|
+
<xsd:element name="billing_Routing" type="xsd:string"/>
|
|
54
|
+
<xsd:element name="City" type="xsd:string"/>
|
|
55
|
+
<xsd:element name="Company" type="xsd:string"/>
|
|
56
|
+
<xsd:element name="Contact" type="xsd:string"/>
|
|
57
|
+
<xsd:element name="Country" type="xsd:string"/>
|
|
58
|
+
<xsd:element name="Email" type="xsd:string"/>
|
|
59
|
+
<xsd:element name="Fax" type="xsd:string"/>
|
|
60
|
+
<xsd:element name="fdms_MerchantID" type="xsd:string"/>
|
|
61
|
+
<xsd:element name="fdms_MerchNum" type="xsd:string"/>
|
|
62
|
+
<xsd:element name="fdms_TerminalID" type="xsd:string"/>
|
|
63
|
+
<xsd:element name="Industry" type="xsd:string"/>
|
|
64
|
+
<xsd:element name="MobilePhone" type="xsd:string"/>
|
|
65
|
+
<xsd:element name="paytech_Client" type="xsd:string"/>
|
|
66
|
+
<xsd:element name="paytech_MerchID" type="xsd:string"/>
|
|
67
|
+
<xsd:element name="paytech_TermID" type="xsd:string"/>
|
|
68
|
+
<xsd:element name="Phone" type="xsd:string"/>
|
|
69
|
+
<xsd:element name="Platform" type="xsd:string"/>
|
|
70
|
+
<xsd:element name="ResellerEmail" type="xsd:string"/>
|
|
71
|
+
<xsd:element name="State" type="xsd:string"/>
|
|
72
|
+
<xsd:element name="Street" type="xsd:string"/>
|
|
73
|
+
<xsd:element name="Street2" type="xsd:string"/>
|
|
74
|
+
<xsd:element name="Url" type="xsd:string"/>
|
|
75
|
+
<xsd:element name="vc_MEN" type="xsd:string"/>
|
|
76
|
+
<xsd:element name="vc_MID" type="xsd:string"/>
|
|
77
|
+
<xsd:element name="vc_MPA" type="xsd:string"/>
|
|
78
|
+
<xsd:element name="vc_Password" type="xsd:string"/>
|
|
79
|
+
<xsd:element name="vital_Agent" type="xsd:string"/>
|
|
80
|
+
<xsd:element name="vital_Bin" type="xsd:string"/>
|
|
81
|
+
<xsd:element name="vital_Chain" type="xsd:string"/>
|
|
82
|
+
<xsd:element name="vital_CityCode" type="xsd:string"/>
|
|
83
|
+
<xsd:element name="vital_Mcc" type="xsd:string"/>
|
|
84
|
+
<xsd:element name="vital_MerchCity" type="xsd:string"/>
|
|
85
|
+
<xsd:element name="vital_MerchName" type="xsd:string"/>
|
|
86
|
+
<xsd:element name="vital_MerchState" type="xsd:string"/>
|
|
87
|
+
<xsd:element name="vital_Sid" type="xsd:string"/>
|
|
88
|
+
<xsd:element name="vital_Tid" type="xsd:string"/>
|
|
89
|
+
<xsd:element name="Zip" type="xsd:string"/>
|
|
90
|
+
</xsd:all>
|
|
91
|
+
</xsd:complexType>
|
|
92
|
+
<xsd:complexType name="doubleArray">
|
|
93
|
+
<xsd:complexContent>
|
|
94
|
+
<xsd:restriction base="soapenc:Array">
|
|
95
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:double[]"/>
|
|
96
|
+
</xsd:restriction>
|
|
97
|
+
</xsd:complexContent>
|
|
98
|
+
</xsd:complexType>
|
|
99
|
+
<xsd:complexType name="CurrencyConversionArray">
|
|
100
|
+
<xsd:complexContent>
|
|
101
|
+
<xsd:restriction base="soapenc:Array">
|
|
102
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:CurrencyConversion[]"/>
|
|
103
|
+
</xsd:restriction>
|
|
104
|
+
</xsd:complexContent>
|
|
105
|
+
</xsd:complexType>
|
|
106
|
+
<xsd:complexType name="TransactionResponse">
|
|
107
|
+
<xsd:all>
|
|
108
|
+
<xsd:element name="AcsUrl" type="xsd:string"/>
|
|
109
|
+
<xsd:element name="AuthCode" type="xsd:string"/>
|
|
110
|
+
<xsd:element name="AvsResult" type="xsd:string"/>
|
|
111
|
+
<xsd:element name="AvsResultCode" type="xsd:string"/>
|
|
112
|
+
<xsd:element name="BatchNum" type="xsd:integer"/>
|
|
113
|
+
<xsd:element name="CardCodeResult" type="xsd:string"/>
|
|
114
|
+
<xsd:element name="CardCodeResultCode" type="xsd:string"/>
|
|
115
|
+
<xsd:element name="ConversionRate" type="xsd:double"/>
|
|
116
|
+
<xsd:element name="ConvertedAmount" type="xsd:double"/>
|
|
117
|
+
<xsd:element name="ConvertedAmountCurrency" type="xsd:string"/>
|
|
118
|
+
<xsd:element name="CustNum" type="xsd:integer"/>
|
|
119
|
+
<xsd:element name="Error" type="xsd:string"/>
|
|
120
|
+
<xsd:element name="ErrorCode" type="xsd:integer"/>
|
|
121
|
+
<xsd:element name="isDuplicate" type="xsd:boolean"/>
|
|
122
|
+
<xsd:element name="Payload" type="xsd:string"/>
|
|
123
|
+
<xsd:element name="RefNum" type="xsd:integer"/>
|
|
124
|
+
<xsd:element name="Result" type="xsd:string"/>
|
|
125
|
+
<xsd:element name="ResultCode" type="xsd:string"/>
|
|
126
|
+
<xsd:element name="VpasResultCode" type="xsd:string"/>
|
|
127
|
+
</xsd:all>
|
|
128
|
+
</xsd:complexType>
|
|
129
|
+
<xsd:complexType name="stringArray">
|
|
130
|
+
<xsd:complexContent>
|
|
131
|
+
<xsd:restriction base="soapenc:Array">
|
|
132
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="xsd:string[]"/>
|
|
133
|
+
</xsd:restriction>
|
|
134
|
+
</xsd:complexContent>
|
|
135
|
+
</xsd:complexType>
|
|
136
|
+
<xsd:complexType name="BatchUploadStatus">
|
|
137
|
+
<xsd:all>
|
|
138
|
+
<xsd:element name="Approved" type="xsd:integer"/>
|
|
139
|
+
<xsd:element name="BatchNum" type="xsd:integer"/>
|
|
140
|
+
<xsd:element name="Declined" type="xsd:integer"/>
|
|
141
|
+
<xsd:element name="Errors" type="xsd:integer"/>
|
|
142
|
+
<xsd:element name="Finished" type="xsd:string"/>
|
|
143
|
+
<xsd:element name="Remaining" type="xsd:integer"/>
|
|
144
|
+
<xsd:element name="Started" type="xsd:string"/>
|
|
145
|
+
<xsd:element name="Status" type="xsd:string"/>
|
|
146
|
+
<xsd:element name="Transactions" type="xsd:integer"/>
|
|
147
|
+
</xsd:all>
|
|
148
|
+
</xsd:complexType>
|
|
149
|
+
<xsd:complexType name="CurrencyConversion">
|
|
150
|
+
<xsd:all>
|
|
151
|
+
<xsd:element name="Amount" type="xsd:double"/>
|
|
152
|
+
<xsd:element name="Currency" type="xsd:integer"/>
|
|
153
|
+
<xsd:element name="FromAmount" type="xsd:double"/>
|
|
154
|
+
<xsd:element name="FromCurrency" type="xsd:integer"/>
|
|
155
|
+
<xsd:element name="Rate" type="xsd:double"/>
|
|
156
|
+
</xsd:all>
|
|
157
|
+
</xsd:complexType>
|
|
158
|
+
<xsd:complexType name="AccountDetails">
|
|
159
|
+
<xsd:all>
|
|
160
|
+
<xsd:element name="CardholderAuthentication" type="xsd:string"/>
|
|
161
|
+
<xsd:element name="CheckPlatform" type="xsd:string"/>
|
|
162
|
+
<xsd:element name="CreditCardPlatform" type="xsd:string"/>
|
|
163
|
+
<xsd:element name="Industry" type="xsd:string"/>
|
|
164
|
+
<xsd:element name="SupportedCurrencies" type="typens:CurrencyObjectArray"/>
|
|
165
|
+
</xsd:all>
|
|
166
|
+
</xsd:complexType>
|
|
167
|
+
<xsd:complexType name="CurrencyObjectArray">
|
|
168
|
+
<xsd:complexContent>
|
|
169
|
+
<xsd:restriction base="soapenc:Array">
|
|
170
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:CurrencyObject[]"/>
|
|
171
|
+
</xsd:restriction>
|
|
172
|
+
</xsd:complexContent>
|
|
173
|
+
</xsd:complexType>
|
|
174
|
+
<xsd:complexType name="BatchStatus">
|
|
175
|
+
<xsd:all>
|
|
176
|
+
<xsd:element name="BatchNum" type="xsd:integer"/>
|
|
177
|
+
<xsd:element name="Closed" type="xsd:string"/>
|
|
178
|
+
<xsd:element name="CreditsAmount" type="xsd:double"/>
|
|
179
|
+
<xsd:element name="CreditsCount" type="xsd:integer"/>
|
|
180
|
+
<xsd:element name="NetAmount" type="xsd:double"/>
|
|
181
|
+
<xsd:element name="Opened" type="xsd:string"/>
|
|
182
|
+
<xsd:element name="SalesAmount" type="xsd:double"/>
|
|
183
|
+
<xsd:element name="SalesCount" type="xsd:integer"/>
|
|
184
|
+
<xsd:element name="Scheduled" type="xsd:string"/>
|
|
185
|
+
<xsd:element name="Sequence" type="xsd:integer"/>
|
|
186
|
+
<xsd:element name="Status" type="xsd:string"/>
|
|
187
|
+
<xsd:element name="TransactionCount" type="xsd:integer"/>
|
|
188
|
+
<xsd:element name="VoidsAmount" type="xsd:double"/>
|
|
189
|
+
<xsd:element name="VoidsCount" type="xsd:integer"/>
|
|
190
|
+
</xsd:all>
|
|
191
|
+
</xsd:complexType>
|
|
192
|
+
<xsd:complexType name="TransactionObjectArray">
|
|
193
|
+
<xsd:complexContent>
|
|
194
|
+
<xsd:restriction base="soapenc:Array">
|
|
195
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:TransactionObject[]"/>
|
|
196
|
+
</xsd:restriction>
|
|
197
|
+
</xsd:complexContent>
|
|
198
|
+
</xsd:complexType>
|
|
199
|
+
<xsd:complexType name="TransactionSearchResult">
|
|
200
|
+
<xsd:all>
|
|
201
|
+
<xsd:element name="AuthOnlyAmount" type="xsd:float"/>
|
|
202
|
+
<xsd:element name="AuthOnlyCount" type="xsd:integer"/>
|
|
203
|
+
<xsd:element name="CreditsAmount" type="xsd:float"/>
|
|
204
|
+
<xsd:element name="CreditsCount" type="xsd:integer"/>
|
|
205
|
+
<xsd:element name="DeclinesAmount" type="xsd:float"/>
|
|
206
|
+
<xsd:element name="DeclinesCount" type="xsd:integer"/>
|
|
207
|
+
<xsd:element name="ErrorsAmount" type="xsd:float"/>
|
|
208
|
+
<xsd:element name="ErrorsCount" type="xsd:integer"/>
|
|
209
|
+
<xsd:element name="Limit" type="xsd:integer"/>
|
|
210
|
+
<xsd:element name="SalesAmount" type="xsd:float"/>
|
|
211
|
+
<xsd:element name="SalesCount" type="xsd:integer"/>
|
|
212
|
+
<xsd:element name="StartIndex" type="xsd:integer"/>
|
|
213
|
+
<xsd:element name="Transactions" type="typens:TransactionObjectArray"/>
|
|
214
|
+
<xsd:element name="TransactionsMatched" type="xsd:integer"/>
|
|
215
|
+
<xsd:element name="TransactionsReturned" type="xsd:integer"/>
|
|
216
|
+
<xsd:element name="VoidsAmount" type="xsd:float"/>
|
|
217
|
+
<xsd:element name="VoidsCount" type="xsd:integer"/>
|
|
218
|
+
</xsd:all>
|
|
219
|
+
</xsd:complexType>
|
|
220
|
+
<xsd:complexType name="MerchantObject">
|
|
221
|
+
<xsd:all>
|
|
222
|
+
<xsd:element name="City" type="xsd:string"/>
|
|
223
|
+
<xsd:element name="Company" type="xsd:string"/>
|
|
224
|
+
<xsd:element name="Contact" type="xsd:string"/>
|
|
225
|
+
<xsd:element name="Country" type="xsd:string"/>
|
|
226
|
+
<xsd:element name="Email" type="xsd:string"/>
|
|
227
|
+
<xsd:element name="Fax" type="xsd:string"/>
|
|
228
|
+
<xsd:element name="MerchID" type="xsd:integer"/>
|
|
229
|
+
<xsd:element name="Phone" type="xsd:string"/>
|
|
230
|
+
<xsd:element name="State" type="xsd:string"/>
|
|
231
|
+
<xsd:element name="Street" type="xsd:string"/>
|
|
232
|
+
<xsd:element name="Street2" type="xsd:string"/>
|
|
233
|
+
<xsd:element name="Zip" type="xsd:string"/>
|
|
234
|
+
</xsd:all>
|
|
235
|
+
</xsd:complexType>
|
|
236
|
+
<xsd:complexType name="MerchantSummaryObject">
|
|
237
|
+
<xsd:all>
|
|
238
|
+
<xsd:element name="CheckRefundsAmount" type="xsd:double"/>
|
|
239
|
+
<xsd:element name="CheckRefundsCount" type="xsd:integer"/>
|
|
240
|
+
<xsd:element name="CheckSalesAmount" type="xsd:double"/>
|
|
241
|
+
<xsd:element name="CheckSalesCount" type="xsd:integer"/>
|
|
242
|
+
<xsd:element name="CreditsAmount" type="xsd:double"/>
|
|
243
|
+
<xsd:element name="CreditsCount" type="xsd:integer"/>
|
|
244
|
+
<xsd:element name="DeclinesAmount" type="xsd:double"/>
|
|
245
|
+
<xsd:element name="DeclinesCount" type="xsd:integer"/>
|
|
246
|
+
<xsd:element name="MerchantID" type="xsd:integer"/>
|
|
247
|
+
<xsd:element name="MerchantName" type="xsd:string"/>
|
|
248
|
+
<xsd:element name="SalesAmount" type="xsd:double"/>
|
|
249
|
+
<xsd:element name="SalesCount" type="xsd:integer"/>
|
|
250
|
+
<xsd:element name="VoidsAmount" type="xsd:double"/>
|
|
251
|
+
<xsd:element name="VoidsCount" type="xsd:integer"/>
|
|
252
|
+
</xsd:all>
|
|
253
|
+
</xsd:complexType>
|
|
254
|
+
<xsd:complexType name="TransactionObject">
|
|
255
|
+
<xsd:all>
|
|
256
|
+
<xsd:element name="AccountHolder" type="xsd:string"/>
|
|
257
|
+
<xsd:element name="BillingAddress" type="typens:Address"/>
|
|
258
|
+
<xsd:element name="CheckData" type="typens:CheckData"/>
|
|
259
|
+
<xsd:element name="CheckTrace" type="typens:CheckTrace"/>
|
|
260
|
+
<xsd:element name="ClientIP" type="xsd:string"/>
|
|
261
|
+
<xsd:element name="CreditCardData" type="typens:CreditCardData"/>
|
|
262
|
+
<xsd:element name="CustomerID" type="xsd:string"/>
|
|
263
|
+
<xsd:element name="DateTime" type="xsd:string"/>
|
|
264
|
+
<xsd:element name="Details" type="typens:TransactionDetail"/>
|
|
265
|
+
<xsd:element name="Response" type="typens:TransactionResponse"/>
|
|
266
|
+
<xsd:element name="ServerIP" type="xsd:string"/>
|
|
267
|
+
<xsd:element name="ShippingAddress" type="typens:Address"/>
|
|
268
|
+
<xsd:element name="Source" type="xsd:string"/>
|
|
269
|
+
<xsd:element name="Status" type="xsd:string"/>
|
|
270
|
+
<xsd:element name="TransactionType" type="xsd:string"/>
|
|
271
|
+
<xsd:element name="User" type="xsd:string"/>
|
|
272
|
+
</xsd:all>
|
|
273
|
+
</xsd:complexType>
|
|
274
|
+
<xsd:complexType name="FieldValueArray">
|
|
275
|
+
<xsd:complexContent>
|
|
276
|
+
<xsd:restriction base="soapenc:Array">
|
|
277
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:FieldValue[]"/>
|
|
278
|
+
</xsd:restriction>
|
|
279
|
+
</xsd:complexContent>
|
|
280
|
+
</xsd:complexType>
|
|
281
|
+
<xsd:complexType name="TransactionRequestObject">
|
|
282
|
+
<xsd:all>
|
|
283
|
+
<xsd:element name="AccountHolder" type="xsd:string" minOccurs="0"/>
|
|
284
|
+
<xsd:element name="AuthCode" type="xsd:string" minOccurs="0"/>
|
|
285
|
+
<xsd:element name="BillingAddress" type="typens:Address" minOccurs="0"/>
|
|
286
|
+
<xsd:element name="CheckData" type="typens:CheckData" minOccurs="0"/>
|
|
287
|
+
<xsd:element name="ClientIP" type="xsd:string" minOccurs="0"/>
|
|
288
|
+
<xsd:element name="Command" type="xsd:string" minOccurs="0"/>
|
|
289
|
+
<xsd:element name="CreditCardData" type="typens:CreditCardData" minOccurs="0"/>
|
|
290
|
+
<xsd:element name="CustomerID" type="xsd:string" minOccurs="0"/>
|
|
291
|
+
<xsd:element name="CustReceipt" type="xsd:boolean" minOccurs="0"/>
|
|
292
|
+
<xsd:element name="Details" type="typens:TransactionDetail"/>
|
|
293
|
+
<xsd:element name="IgnoreDuplicate" type="xsd:boolean" minOccurs="0"/>
|
|
294
|
+
<xsd:element name="RecurringBilling" type="typens:RecurringBilling" minOccurs="0"/>
|
|
295
|
+
<xsd:element name="RefNum" type="xsd:string" minOccurs="0"/>
|
|
296
|
+
<xsd:element name="ShippingAddress" type="typens:Address" minOccurs="0"/>
|
|
297
|
+
<xsd:element name="Software" type="xsd:string" minOccurs="0"/>
|
|
298
|
+
</xsd:all>
|
|
299
|
+
</xsd:complexType>
|
|
300
|
+
<xsd:complexType name="TransactionDetail">
|
|
301
|
+
<xsd:all>
|
|
302
|
+
<xsd:element name="Amount" type="xsd:double" minOccurs="0"/>
|
|
303
|
+
<xsd:element name="Clerk" type="xsd:string" minOccurs="0"/>
|
|
304
|
+
<xsd:element name="Currency" type="xsd:integer" minOccurs="0"/>
|
|
305
|
+
<xsd:element name="Description" type="xsd:string" minOccurs="0"/>
|
|
306
|
+
<xsd:element name="Discount" type="xsd:double" minOccurs="0"/>
|
|
307
|
+
<xsd:element name="Invoice" type="xsd:string" minOccurs="0"/>
|
|
308
|
+
<xsd:element name="NonTax" type="xsd:boolean" minOccurs="0"/>
|
|
309
|
+
<xsd:element name="OrderID" type="xsd:string" minOccurs="0"/>
|
|
310
|
+
<xsd:element name="PONum" type="xsd:string" minOccurs="0"/>
|
|
311
|
+
<xsd:element name="Shipping" type="xsd:double" minOccurs="0"/>
|
|
312
|
+
<xsd:element name="Subtotal" type="xsd:double" minOccurs="0"/>
|
|
313
|
+
<xsd:element name="Table" type="xsd:string" minOccurs="0"/>
|
|
314
|
+
<xsd:element name="Tax" type="xsd:double" minOccurs="0"/>
|
|
315
|
+
<xsd:element name="Terminal" type="xsd:string" minOccurs="0"/>
|
|
316
|
+
<xsd:element name="Tip" type="xsd:double" minOccurs="0"/>
|
|
317
|
+
</xsd:all>
|
|
318
|
+
</xsd:complexType>
|
|
319
|
+
<xsd:complexType name="BatchSearchResult">
|
|
320
|
+
<xsd:all>
|
|
321
|
+
<xsd:element name="Batches" type="typens:BatchStatusArray"/>
|
|
322
|
+
<xsd:element name="BatchesMatched" type="xsd:integer"/>
|
|
323
|
+
<xsd:element name="BatchesReturned" type="xsd:integer"/>
|
|
324
|
+
<xsd:element name="Limit" type="xsd:integer"/>
|
|
325
|
+
<xsd:element name="StartIndex" type="xsd:integer"/>
|
|
326
|
+
</xsd:all>
|
|
327
|
+
</xsd:complexType>
|
|
328
|
+
<xsd:complexType name="CustomerSearchResult">
|
|
329
|
+
<xsd:all>
|
|
330
|
+
<xsd:element name="Customers" type="typens:CustomerObjectArray"/>
|
|
331
|
+
<xsd:element name="CustomersMatched" type="xsd:integer"/>
|
|
332
|
+
<xsd:element name="CustomersReturned" type="xsd:integer"/>
|
|
333
|
+
<xsd:element name="Limit" type="xsd:integer"/>
|
|
334
|
+
<xsd:element name="StartIndex" type="xsd:integer"/>
|
|
335
|
+
</xsd:all>
|
|
336
|
+
</xsd:complexType>
|
|
337
|
+
<xsd:complexType name="MerchantSearchResult">
|
|
338
|
+
<xsd:all>
|
|
339
|
+
<xsd:element name="Limit" type="xsd:integer"/>
|
|
340
|
+
<xsd:element name="Merchants" type="typens:MerchantObjectArray"/>
|
|
341
|
+
<xsd:element name="MerchantsMatched" type="xsd:integer"/>
|
|
342
|
+
<xsd:element name="MerchantsReturn" type="xsd:integer"/>
|
|
343
|
+
<xsd:element name="StartIndex" type="xsd:integer"/>
|
|
344
|
+
</xsd:all>
|
|
345
|
+
</xsd:complexType>
|
|
346
|
+
<xsd:complexType name="ueHash">
|
|
347
|
+
<xsd:all>
|
|
348
|
+
<xsd:element name="HashValue" type="xsd:string"/>
|
|
349
|
+
<xsd:element name="Seed" type="xsd:string"/>
|
|
350
|
+
<xsd:element name="Type" type="xsd:string"/>
|
|
351
|
+
</xsd:all>
|
|
352
|
+
</xsd:complexType>
|
|
353
|
+
<xsd:complexType name="Address">
|
|
354
|
+
<xsd:all>
|
|
355
|
+
<xsd:element name="City" type="xsd:string" minOccurs="0"/>
|
|
356
|
+
<xsd:element name="Company" type="xsd:string" minOccurs="0"/>
|
|
357
|
+
<xsd:element name="Country" type="xsd:string" minOccurs="0"/>
|
|
358
|
+
<xsd:element name="Email" type="xsd:string" minOccurs="0"/>
|
|
359
|
+
<xsd:element name="Fax" type="xsd:string" minOccurs="0"/>
|
|
360
|
+
<xsd:element name="FirstName" type="xsd:string" minOccurs="0"/>
|
|
361
|
+
<xsd:element name="LastName" type="xsd:string" minOccurs="0"/>
|
|
362
|
+
<xsd:element name="Phone" type="xsd:string" minOccurs="0"/>
|
|
363
|
+
<xsd:element name="State" type="xsd:string" minOccurs="0"/>
|
|
364
|
+
<xsd:element name="Street" type="xsd:string" minOccurs="0"/>
|
|
365
|
+
<xsd:element name="Street2" type="xsd:string" minOccurs="0"/>
|
|
366
|
+
<xsd:element name="Zip" type="xsd:string" minOccurs="0"/>
|
|
367
|
+
</xsd:all>
|
|
368
|
+
</xsd:complexType>
|
|
369
|
+
<xsd:complexType name="PaymentMethodArray">
|
|
370
|
+
<xsd:complexContent>
|
|
371
|
+
<xsd:restriction base="soapenc:Array">
|
|
372
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:PaymentMethod[]"/>
|
|
373
|
+
</xsd:restriction>
|
|
374
|
+
</xsd:complexContent>
|
|
375
|
+
</xsd:complexType>
|
|
376
|
+
<xsd:complexType name="CheckData">
|
|
377
|
+
<xsd:all>
|
|
378
|
+
<xsd:element name="Account" type="xsd:string"/>
|
|
379
|
+
<xsd:element name="CheckNumber" type="xsd:integer" minOccurs="0"/>
|
|
380
|
+
<xsd:element name="DriversLicense" type="xsd:string" minOccurs="0"/>
|
|
381
|
+
<xsd:element name="DriversLicenseState" type="xsd:string" minOccurs="0"/>
|
|
382
|
+
<xsd:element name="RecordType" type="xsd:string" minOccurs="0"/>
|
|
383
|
+
<xsd:element name="Routing" type="xsd:string"/>
|
|
384
|
+
<xsd:element name="SSN" type="xsd:string" minOccurs="0"/>
|
|
385
|
+
</xsd:all>
|
|
386
|
+
</xsd:complexType>
|
|
387
|
+
<xsd:complexType name="CreditCardData">
|
|
388
|
+
<xsd:all>
|
|
389
|
+
<xsd:element name="AvsStreet" type="xsd:string" minOccurs="0"/>
|
|
390
|
+
<xsd:element name="AvsZip" type="xsd:string" minOccurs="0"/>
|
|
391
|
+
<xsd:element name="CardCode" type="xsd:string" minOccurs="0"/>
|
|
392
|
+
<xsd:element name="CardExpiration" type="xsd:string" minOccurs="0"/>
|
|
393
|
+
<xsd:element name="CardNumber" type="xsd:string" minOccurs="0"/>
|
|
394
|
+
<xsd:element name="CardPresent" type="xsd:boolean" minOccurs="0"/>
|
|
395
|
+
<xsd:element name="CardType" type="xsd:string" minOccurs="0"/>
|
|
396
|
+
<xsd:element name="CAVV" type="xsd:string" minOccurs="0"/>
|
|
397
|
+
<xsd:element name="ECI" type="xsd:integer" minOccurs="0"/>
|
|
398
|
+
<xsd:element name="InternalCardAuth" type="xsd:boolean" minOccurs="0"/>
|
|
399
|
+
<xsd:element name="MagStripe" type="xsd:string" minOccurs="0"/>
|
|
400
|
+
<xsd:element name="MagSupport" type="xsd:string" minOccurs="0"/>
|
|
401
|
+
<xsd:element name="Pares" type="xsd:string" minOccurs="0"/>
|
|
402
|
+
<xsd:element name="TermType" type="xsd:string" minOccurs="0"/>
|
|
403
|
+
<xsd:element name="XID" type="xsd:string" minOccurs="0"/>
|
|
404
|
+
</xsd:all>
|
|
405
|
+
</xsd:complexType>
|
|
406
|
+
<xsd:complexType name="CurrencyObject">
|
|
407
|
+
<xsd:all>
|
|
408
|
+
<xsd:element name="Currency" type="xsd:string"/>
|
|
409
|
+
<xsd:element name="DecimalPlaces" type="xsd:integer"/>
|
|
410
|
+
<xsd:element name="NumericCode" type="xsd:integer"/>
|
|
411
|
+
<xsd:element name="Rate" type="xsd:double"/>
|
|
412
|
+
<xsd:element name="TextCode" type="xsd:string"/>
|
|
413
|
+
</xsd:all>
|
|
414
|
+
</xsd:complexType>
|
|
415
|
+
<xsd:complexType name="CheckTrace">
|
|
416
|
+
<xsd:all>
|
|
417
|
+
<xsd:element name="BankNote" type="xsd:string" minOccurs="0"/>
|
|
418
|
+
<xsd:element name="Effective" type="xsd:string" minOccurs="0"/>
|
|
419
|
+
<xsd:element name="Processed" type="xsd:string" minOccurs="0" />
|
|
420
|
+
<xsd:element name="Returned" type="xsd:string" minOccurs="0"/>
|
|
421
|
+
<xsd:element name="Settled" type="xsd:string" minOccurs="0" />
|
|
422
|
+
<xsd:element name="TrackingNum" type="xsd:string" minOccurs="0"/>
|
|
423
|
+
</xsd:all>
|
|
424
|
+
</xsd:complexType>
|
|
425
|
+
<xsd:complexType name="FieldValue">
|
|
426
|
+
<xsd:all>
|
|
427
|
+
<xsd:element name="Field" type="xsd:string"/>
|
|
428
|
+
<xsd:element name="Value" type="xsd:string"/>
|
|
429
|
+
</xsd:all>
|
|
430
|
+
</xsd:complexType>
|
|
431
|
+
<xsd:complexType name="RecurringBilling">
|
|
432
|
+
<xsd:all>
|
|
433
|
+
<xsd:element name="Amount" type="xsd:double"/>
|
|
434
|
+
<xsd:element name="Enabled" type="xsd:boolean"/>
|
|
435
|
+
<xsd:element name="Expire" type="xsd:string" minOccurs="0"/>
|
|
436
|
+
<xsd:element name="Next" type="xsd:string"/>
|
|
437
|
+
<xsd:element name="NumLeft" type="xsd:integer"/>
|
|
438
|
+
<xsd:element name="Schedule" type="xsd:string"/>
|
|
439
|
+
</xsd:all>
|
|
440
|
+
</xsd:complexType>
|
|
441
|
+
<xsd:complexType name="BatchStatusArray">
|
|
442
|
+
<xsd:complexContent>
|
|
443
|
+
<xsd:restriction base="soapenc:Array">
|
|
444
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:BatchStatus[]"/>
|
|
445
|
+
</xsd:restriction>
|
|
446
|
+
</xsd:complexContent>
|
|
447
|
+
</xsd:complexType>
|
|
448
|
+
<xsd:complexType name="CustomerObjectArray">
|
|
449
|
+
<xsd:complexContent>
|
|
450
|
+
<xsd:restriction base="soapenc:Array">
|
|
451
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:CustomerObject[]"/>
|
|
452
|
+
</xsd:restriction>
|
|
453
|
+
</xsd:complexContent>
|
|
454
|
+
</xsd:complexType>
|
|
455
|
+
<xsd:complexType name="MerchantObjectArray">
|
|
456
|
+
<xsd:complexContent>
|
|
457
|
+
<xsd:restriction base="soapenc:Array">
|
|
458
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:MerchantObject[]"/>
|
|
459
|
+
</xsd:restriction>
|
|
460
|
+
</xsd:complexContent>
|
|
461
|
+
</xsd:complexType>
|
|
462
|
+
<xsd:complexType name="SearchParam">
|
|
463
|
+
<xsd:all>
|
|
464
|
+
<xsd:element name="Field" type="xsd:string"/>
|
|
465
|
+
<xsd:element name="Type" type="xsd:string"/>
|
|
466
|
+
<xsd:element name="Value" type="xsd:string"/>
|
|
467
|
+
</xsd:all>
|
|
468
|
+
</xsd:complexType>
|
|
469
|
+
<xsd:complexType name="SearchParamArray">
|
|
470
|
+
<xsd:complexContent>
|
|
471
|
+
<xsd:restriction base="soapenc:Array">
|
|
472
|
+
<xsd:attribute ref="soapenc:arrayType" wsdl:arrayType="typens:SearchParam[]"/>
|
|
473
|
+
</xsd:restriction>
|
|
474
|
+
</xsd:complexContent>
|
|
475
|
+
</xsd:complexType>
|
|
476
|
+
|
|
477
|
+
</xsd:schema>
|
|
478
|
+
</types>
|
|
479
|
+
<message name="addCustomer">
|
|
480
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
481
|
+
<part name="CustomerData" type="typens:CustomerObject"/>
|
|
482
|
+
</message>
|
|
483
|
+
<message name="addCustomerResponse">
|
|
484
|
+
<part name="addCustomerReturn" type="xsd:integer"/>
|
|
485
|
+
</message>
|
|
486
|
+
<message name="addCustomerPaymentMethod">
|
|
487
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
488
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
489
|
+
<part name="PaymentMethod" type="typens:PaymentMethod"/>
|
|
490
|
+
<part name="MakeDefault" type="xsd:boolean"/>
|
|
491
|
+
<part name="Verify" type="xsd:boolean"/>
|
|
492
|
+
</message>
|
|
493
|
+
<message name="addCustomerPaymentMethodResponse">
|
|
494
|
+
<part name="addCustomerPaymentMethodReturn" type="xsd:integer"/>
|
|
495
|
+
</message>
|
|
496
|
+
<message name="addMerchantApplication">
|
|
497
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
498
|
+
<part name="Application" type="typens:MerchantApplicationObject"/>
|
|
499
|
+
</message>
|
|
500
|
+
<message name="addMerchantApplicationResponse">
|
|
501
|
+
<part name="addMerchantApplicationReturn" type="xsd:integer"/>
|
|
502
|
+
</message>
|
|
503
|
+
<message name="bulkCurrencyConversion">
|
|
504
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
505
|
+
<part name="FromCurrency" type="xsd:string"/>
|
|
506
|
+
<part name="ToCurrency" type="xsd:string"/>
|
|
507
|
+
<part name="Amounts" type="typens:doubleArray"/>
|
|
508
|
+
</message>
|
|
509
|
+
<message name="bulkCurrencyConversionResponse">
|
|
510
|
+
<part name="bulkCurrencyConversionReturn" type="typens:CurrencyConversionArray"/>
|
|
511
|
+
</message>
|
|
512
|
+
<message name="captureTransaction">
|
|
513
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
514
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
515
|
+
<part name="Amount" type="xsd:double"/>
|
|
516
|
+
</message>
|
|
517
|
+
<message name="captureTransactionResponse">
|
|
518
|
+
<part name="captureTransactionReturn" type="typens:TransactionResponse"/>
|
|
519
|
+
</message>
|
|
520
|
+
<message name="closeBatch">
|
|
521
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
522
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
523
|
+
</message>
|
|
524
|
+
<message name="closeBatchResponse">
|
|
525
|
+
<part name="closeBatchReturn" type="xsd:boolean"/>
|
|
526
|
+
</message>
|
|
527
|
+
<message name="createBatchUpload">
|
|
528
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
529
|
+
<part name="FileName" type="xsd:string"/>
|
|
530
|
+
<part name="AutoStart" type="xsd:boolean"/>
|
|
531
|
+
<part name="Format" type="xsd:string"/>
|
|
532
|
+
<part name="Encoding" type="xsd:string"/>
|
|
533
|
+
<part name="Fields" type="typens:stringArray"/>
|
|
534
|
+
<part name="Data" type="xsd:string"/>
|
|
535
|
+
<part name="OverrideDuplicates" type="xsd:boolean"/>
|
|
536
|
+
</message>
|
|
537
|
+
<message name="createBatchUploadResponse">
|
|
538
|
+
<part name="createBatchUploadReturn" type="typens:BatchUploadStatus"/>
|
|
539
|
+
</message>
|
|
540
|
+
<message name="currencyConversion">
|
|
541
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
542
|
+
<part name="FromCurrency" type="xsd:integer"/>
|
|
543
|
+
<part name="ToCurrency" type="xsd:integer"/>
|
|
544
|
+
<part name="Amount" type="xsd:double"/>
|
|
545
|
+
</message>
|
|
546
|
+
<message name="currencyConversionResponse">
|
|
547
|
+
<part name="currencyConversionReturn" type="typens:CurrencyConversion"/>
|
|
548
|
+
</message>
|
|
549
|
+
<message name="deleteCustomer">
|
|
550
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
551
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
552
|
+
</message>
|
|
553
|
+
<message name="deleteCustomerResponse">
|
|
554
|
+
<part name="deleteCustomerReturn" type="xsd:boolean"/>
|
|
555
|
+
</message>
|
|
556
|
+
<message name="deleteCustomerPaymentMethod">
|
|
557
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
558
|
+
<part name="Custnum" type="xsd:integer"/>
|
|
559
|
+
<part name="PaymentMethodID" type="xsd:integer"/>
|
|
560
|
+
</message>
|
|
561
|
+
<message name="deleteCustomerPaymentMethodResponse">
|
|
562
|
+
<part name="deleteCustomerPaymentMethodReturn" type="xsd:boolean"/>
|
|
563
|
+
</message>
|
|
564
|
+
<message name="deleteMerchant">
|
|
565
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
566
|
+
<part name="MerchantID" type="xsd:integer"/>
|
|
567
|
+
<part name="Reason" type="xsd:string"/>
|
|
568
|
+
</message>
|
|
569
|
+
<message name="deleteMerchantResponse">
|
|
570
|
+
<part name="deleteMerchantReturn" type="xsd:boolean"/>
|
|
571
|
+
</message>
|
|
572
|
+
<message name="disableCustomer">
|
|
573
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
574
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
575
|
+
</message>
|
|
576
|
+
<message name="disableCustomerResponse">
|
|
577
|
+
<part name="disableCustomerReturn" type="xsd:boolean"/>
|
|
578
|
+
</message>
|
|
579
|
+
<message name="enableCustomer">
|
|
580
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
581
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
582
|
+
</message>
|
|
583
|
+
<message name="enableCustomerResponse">
|
|
584
|
+
<part name="enableCustomerReturn" type="xsd:boolean"/>
|
|
585
|
+
</message>
|
|
586
|
+
<message name="getAccountDetails">
|
|
587
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
588
|
+
</message>
|
|
589
|
+
<message name="getAccountDetailsResponse">
|
|
590
|
+
<part name="getAccountDetailsReturn" type="typens:AccountDetails"/>
|
|
591
|
+
</message>
|
|
592
|
+
<message name="getBatchStatus">
|
|
593
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
594
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
595
|
+
</message>
|
|
596
|
+
<message name="getBatchStatusResponse">
|
|
597
|
+
<part name="getBatchStatusReturn" type="typens:BatchStatus"/>
|
|
598
|
+
</message>
|
|
599
|
+
<message name="getBatchTransactions">
|
|
600
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
601
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
602
|
+
</message>
|
|
603
|
+
<message name="getBatchTransactionsResponse">
|
|
604
|
+
<part name="getBatchTransactionsReturn" type="typens:TransactionObjectArray"/>
|
|
605
|
+
</message>
|
|
606
|
+
<message name="getBatchUploadStatus">
|
|
607
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
608
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
609
|
+
</message>
|
|
610
|
+
<message name="getBatchUploadStatusResponse">
|
|
611
|
+
<part name="getBatchUploadStatusReturn" type="typens:BatchUploadStatus"/>
|
|
612
|
+
</message>
|
|
613
|
+
<message name="getCustomer">
|
|
614
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
615
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
616
|
+
</message>
|
|
617
|
+
<message name="getCustomerResponse">
|
|
618
|
+
<part name="getCustomerReturn" type="typens:CustomerObject"/>
|
|
619
|
+
</message>
|
|
620
|
+
<message name="getCustomerHistory">
|
|
621
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
622
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
623
|
+
</message>
|
|
624
|
+
<message name="getCustomerHistoryResponse">
|
|
625
|
+
<part name="getCustomerHistoryReturn" type="typens:TransactionSearchResult"/>
|
|
626
|
+
</message>
|
|
627
|
+
<message name="getMerchant">
|
|
628
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
629
|
+
<part name="MerchantID" type="xsd:integer"/>
|
|
630
|
+
</message>
|
|
631
|
+
<message name="getMerchantResponse">
|
|
632
|
+
<part name="getMerchantReturn" type="typens:MerchantObject"/>
|
|
633
|
+
</message>
|
|
634
|
+
<message name="getMerchantApplicationStatus">
|
|
635
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
636
|
+
<part name="ApplicationID" type="xsd:integer"/>
|
|
637
|
+
</message>
|
|
638
|
+
<message name="getMerchantApplicationStatusResponse">
|
|
639
|
+
<part name="getMerchantApplicationStatusReturn" type="xsd:string"/>
|
|
640
|
+
</message>
|
|
641
|
+
<message name="getMerchantSummary">
|
|
642
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
643
|
+
<part name="MerchantID" type="xsd:integer"/>
|
|
644
|
+
<part name="Start" type="xsd:string"/>
|
|
645
|
+
<part name="End" type="xsd:string"/>
|
|
646
|
+
</message>
|
|
647
|
+
<message name="getMerchantSummaryResponse">
|
|
648
|
+
<part name="getMerchantSummaryReturn" type="typens:MerchantSummaryObject"/>
|
|
649
|
+
</message>
|
|
650
|
+
<message name="getSupportedCurrencies">
|
|
651
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
652
|
+
</message>
|
|
653
|
+
<message name="getSupportedCurrenciesResponse">
|
|
654
|
+
<part name="getSupportedCurrenciesReturn" type="typens:CurrencyObjectArray"/>
|
|
655
|
+
</message>
|
|
656
|
+
<message name="getTransaction">
|
|
657
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
658
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
659
|
+
</message>
|
|
660
|
+
<message name="getTransactionResponse">
|
|
661
|
+
<part name="getTransactionReturn" type="typens:TransactionObject"/>
|
|
662
|
+
</message>
|
|
663
|
+
<message name="getTransactionCustom">
|
|
664
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
665
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
666
|
+
<part name="Fields" type="typens:stringArray"/>
|
|
667
|
+
</message>
|
|
668
|
+
<message name="getTransactionCustomResponse">
|
|
669
|
+
<part name="getTransactionCustomReturn" type="typens:FieldValueArray"/>
|
|
670
|
+
</message>
|
|
671
|
+
<message name="getTransactionReport">
|
|
672
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
673
|
+
<part name="StartDate" type="xsd:string"/>
|
|
674
|
+
<part name="EndDate" type="xsd:string"/>
|
|
675
|
+
<part name="Report" type="xsd:string"/>
|
|
676
|
+
<part name="Format" type="xsd:string"/>
|
|
677
|
+
</message>
|
|
678
|
+
<message name="getTransactionReportResponse">
|
|
679
|
+
<part name="getTransactionReportReturn" type="xsd:string"/>
|
|
680
|
+
</message>
|
|
681
|
+
<message name="getTransactionStatus">
|
|
682
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
683
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
684
|
+
</message>
|
|
685
|
+
<message name="getTransactionStatusResponse">
|
|
686
|
+
<part name="getTransactionStatusReturn" type="typens:TransactionResponse"/>
|
|
687
|
+
</message>
|
|
688
|
+
<message name="pauseBatchUpload">
|
|
689
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
690
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
691
|
+
</message>
|
|
692
|
+
<message name="pauseBatchUploadResponse">
|
|
693
|
+
<part name="pauseBatchUploadReturn" type="xsd:boolean"/>
|
|
694
|
+
</message>
|
|
695
|
+
<message name="postAuth">
|
|
696
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
697
|
+
<part name="Params" type="typens:TransactionRequestObject"/>
|
|
698
|
+
</message>
|
|
699
|
+
<message name="postAuthResponse">
|
|
700
|
+
<part name="postAuthReturn" type="typens:TransactionResponse"/>
|
|
701
|
+
</message>
|
|
702
|
+
<message name="quickUpdateCustomer">
|
|
703
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
704
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
705
|
+
<part name="UpdateData" type="typens:FieldValueArray"/>
|
|
706
|
+
</message>
|
|
707
|
+
<message name="quickUpdateCustomerResponse">
|
|
708
|
+
<part name="quickUpdateCustomerReturn" type="xsd:boolean"/>
|
|
709
|
+
</message>
|
|
710
|
+
<message name="runBatchUpload">
|
|
711
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
712
|
+
<part name="BatchNum" type="xsd:integer"/>
|
|
713
|
+
</message>
|
|
714
|
+
<message name="runBatchUploadResponse">
|
|
715
|
+
<part name="runBatchUploadReturn" type="xsd:boolean"/>
|
|
716
|
+
</message>
|
|
717
|
+
<message name="runCredit">
|
|
718
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
719
|
+
<part name="Params" type="typens:TransactionRequestObject"/>
|
|
720
|
+
</message>
|
|
721
|
+
<message name="runCreditResponse">
|
|
722
|
+
<part name="runCreditReturn" type="typens:TransactionResponse"/>
|
|
723
|
+
</message>
|
|
724
|
+
<message name="runCustomerTransaction">
|
|
725
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
726
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
727
|
+
<part name="Details" type="typens:TransactionDetail"/>
|
|
728
|
+
<part name="Command" type="xsd:string"/>
|
|
729
|
+
<part name="PaymentMethodID" type="xsd:integer"/>
|
|
730
|
+
</message>
|
|
731
|
+
<message name="runCustomerTransactionResponse">
|
|
732
|
+
<part name="runCustomerTransactionReturn" type="typens:TransactionResponse"/>
|
|
733
|
+
</message>
|
|
734
|
+
<message name="runQuickSale">
|
|
735
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
736
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
737
|
+
<part name="Details" type="typens:TransactionDetail"/>
|
|
738
|
+
<part name="AuthOnly" type="xsd:boolean"/>
|
|
739
|
+
</message>
|
|
740
|
+
<message name="runQuickSaleResponse">
|
|
741
|
+
<part name="runQuickSaleReturn" type="typens:TransactionResponse"/>
|
|
742
|
+
</message>
|
|
743
|
+
<message name="runSale">
|
|
744
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
745
|
+
<part name="Params" type="typens:TransactionRequestObject"/>
|
|
746
|
+
</message>
|
|
747
|
+
<message name="runSaleResponse">
|
|
748
|
+
<part name="runSaleReturn" type="typens:TransactionResponse"/>
|
|
749
|
+
</message>
|
|
750
|
+
<message name="runTransaction">
|
|
751
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
752
|
+
<part name="Parameters" type="typens:TransactionRequestObject"/>
|
|
753
|
+
</message>
|
|
754
|
+
<message name="runTransactionResponse">
|
|
755
|
+
<part name="runTransactionReturn" type="typens:TransactionResponse"/>
|
|
756
|
+
</message>
|
|
757
|
+
<message name="runTransactionAPI">
|
|
758
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
759
|
+
<part name="Parameters" type="typens:FieldValueArray"/>
|
|
760
|
+
</message>
|
|
761
|
+
<message name="runTransactionAPIResponse">
|
|
762
|
+
<part name="runTransactionAPIReturn" type="typens:TransactionResponse"/>
|
|
763
|
+
</message>
|
|
764
|
+
<message name="searchBatches">
|
|
765
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
766
|
+
<part name="Search" type="typens:SearchParamArray"/>
|
|
767
|
+
<part name="MatchAll" type="xsd:boolean"/>
|
|
768
|
+
<part name="Start" type="xsd:integer"/>
|
|
769
|
+
<part name="Limit" type="xsd:integer"/>
|
|
770
|
+
</message>
|
|
771
|
+
<message name="searchBatchesResponse">
|
|
772
|
+
<part name="searchBatchesReturn" type="typens:BatchSearchResult"/>
|
|
773
|
+
</message>
|
|
774
|
+
<message name="searchCustomerID">
|
|
775
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
776
|
+
<part name="CustID" type="xsd:string"/>
|
|
777
|
+
</message>
|
|
778
|
+
<message name="searchCustomerIDResponse">
|
|
779
|
+
<part name="searchCustomerIDReturn" type="xsd:integer"/>
|
|
780
|
+
</message>
|
|
781
|
+
<message name="searchCustomers">
|
|
782
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
783
|
+
<part name="Search" type="typens:SearchParamArray"/>
|
|
784
|
+
<part name="MatchAll" type="xsd:boolean"/>
|
|
785
|
+
<part name="Start" type="xsd:integer"/>
|
|
786
|
+
<part name="Limit" type="xsd:integer"/>
|
|
787
|
+
</message>
|
|
788
|
+
<message name="searchCustomersResponse">
|
|
789
|
+
<part name="searchCustomersReturn" type="typens:CustomerSearchResult"/>
|
|
790
|
+
</message>
|
|
791
|
+
<message name="searchMerchants">
|
|
792
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
793
|
+
<part name="Search" type="typens:SearchParamArray"/>
|
|
794
|
+
<part name="MatchAll" type="xsd:boolean"/>
|
|
795
|
+
<part name="Start" type="xsd:integer"/>
|
|
796
|
+
<part name="Limit" type="xsd:integer"/>
|
|
797
|
+
</message>
|
|
798
|
+
<message name="searchMerchantsResponse">
|
|
799
|
+
<part name="searchMerchantsReturn" type="typens:MerchantSearchResult"/>
|
|
800
|
+
</message>
|
|
801
|
+
<message name="searchTransactions">
|
|
802
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
803
|
+
<part name="Search" type="typens:SearchParamArray"/>
|
|
804
|
+
<part name="MatchAll" type="xsd:boolean"/>
|
|
805
|
+
<part name="Start" type="xsd:integer"/>
|
|
806
|
+
<part name="Limit" type="xsd:integer"/>
|
|
807
|
+
</message>
|
|
808
|
+
<message name="searchTransactionsResponse">
|
|
809
|
+
<part name="searchTransactionsReturn" type="typens:TransactionSearchResult"/>
|
|
810
|
+
</message>
|
|
811
|
+
<message name="searchTransactionsCustom">
|
|
812
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
813
|
+
<part name="Search" type="typens:SearchParamArray"/>
|
|
814
|
+
<part name="MatchAll" type="xsd:boolean"/>
|
|
815
|
+
<part name="Start" type="xsd:integer"/>
|
|
816
|
+
<part name="Limit" type="xsd:integer"/>
|
|
817
|
+
<part name="FieldList" type="typens:stringArray"/>
|
|
818
|
+
<part name="Format" type="xsd:string"/>
|
|
819
|
+
</message>
|
|
820
|
+
<message name="searchTransactionsCustomResponse">
|
|
821
|
+
<part name="searchTransactionsCustomReturn" type="xsd:string"/>
|
|
822
|
+
</message>
|
|
823
|
+
<message name="updateCustomer">
|
|
824
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
825
|
+
<part name="CustNum" type="xsd:integer"/>
|
|
826
|
+
<part name="CustomerData" type="typens:CustomerObject"/>
|
|
827
|
+
</message>
|
|
828
|
+
<message name="updateCustomerResponse">
|
|
829
|
+
<part name="updateCustomerReturn" type="xsd:boolean"/>
|
|
830
|
+
</message>
|
|
831
|
+
<message name="updateMerchant">
|
|
832
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
833
|
+
<part name="MerchantID" type="xsd:integer"/>
|
|
834
|
+
<part name="MerchantObject" type="typens:MerchantObject"/>
|
|
835
|
+
</message>
|
|
836
|
+
<message name="updateMerchantResponse">
|
|
837
|
+
<part name="updateMerchantReturn" type="xsd:boolean"/>
|
|
838
|
+
</message>
|
|
839
|
+
<message name="voidTransaction">
|
|
840
|
+
<part name="Token" type="typens:ueSecurityToken"/>
|
|
841
|
+
<part name="RefNum" type="xsd:integer"/>
|
|
842
|
+
</message>
|
|
843
|
+
<message name="voidTransactionResponse">
|
|
844
|
+
<part name="voidTransactionReturn" type="xsd:boolean"/>
|
|
845
|
+
</message>
|
|
846
|
+
<portType name="ueSoapServerPortType">
|
|
847
|
+
<documentation>
|
|
848
|
+
The USAePay Soap interface provides a collection of functions implementing
|
|
849
|
+
a large portion of merchant and reseller functionality.
|
|
850
|
+
</documentation>
|
|
851
|
+
<operation name="addCustomer">
|
|
852
|
+
<documentation>
|
|
853
|
+
Add a Stored Customer Record
|
|
854
|
+
</documentation>
|
|
855
|
+
<input message="typens:addCustomer"/>
|
|
856
|
+
<output message="typens:addCustomerResponse"/>
|
|
857
|
+
</operation>
|
|
858
|
+
<operation name="addCustomerPaymentMethod">
|
|
859
|
+
<documentation>
|
|
860
|
+
Add Payment Method For a Customer
|
|
861
|
+
</documentation>
|
|
862
|
+
<input message="typens:addCustomerPaymentMethod"/>
|
|
863
|
+
<output message="typens:addCustomerPaymentMethodResponse"/>
|
|
864
|
+
</operation>
|
|
865
|
+
<operation name="addMerchantApplication">
|
|
866
|
+
<documentation>
|
|
867
|
+
Add a new merchant application to the system
|
|
868
|
+
</documentation>
|
|
869
|
+
<input message="typens:addMerchantApplication"/>
|
|
870
|
+
<output message="typens:addMerchantApplicationResponse"/>
|
|
871
|
+
</operation>
|
|
872
|
+
<operation name="bulkCurrencyConversion">
|
|
873
|
+
<documentation>
|
|
874
|
+
Convert multiple currency amounts in a single method call
|
|
875
|
+
</documentation>
|
|
876
|
+
<input message="typens:bulkCurrencyConversion"/>
|
|
877
|
+
<output message="typens:bulkCurrencyConversionResponse"/>
|
|
878
|
+
</operation>
|
|
879
|
+
<operation name="captureTransaction">
|
|
880
|
+
<documentation>
|
|
881
|
+
Capture a queued transaction
|
|
882
|
+
</documentation>
|
|
883
|
+
<input message="typens:captureTransaction"/>
|
|
884
|
+
<output message="typens:captureTransactionResponse"/>
|
|
885
|
+
</operation>
|
|
886
|
+
<operation name="closeBatch">
|
|
887
|
+
<documentation>
|
|
888
|
+
Close the batch specified by BatchNum
|
|
889
|
+
</documentation>
|
|
890
|
+
<input message="typens:closeBatch"/>
|
|
891
|
+
<output message="typens:closeBatchResponse"/>
|
|
892
|
+
</operation>
|
|
893
|
+
<operation name="createBatchUpload">
|
|
894
|
+
<documentation>
|
|
895
|
+
Post a new batch of transactions to the gateway for processing.
|
|
896
|
+
</documentation>
|
|
897
|
+
<input message="typens:createBatchUpload"/>
|
|
898
|
+
<output message="typens:createBatchUploadResponse"/>
|
|
899
|
+
</operation>
|
|
900
|
+
<operation name="currencyConversion">
|
|
901
|
+
<documentation>
|
|
902
|
+
Lookup currency conversion rate for single dollar amount.
|
|
903
|
+
</documentation>
|
|
904
|
+
<input message="typens:currencyConversion"/>
|
|
905
|
+
<output message="typens:currencyConversionResponse"/>
|
|
906
|
+
</operation>
|
|
907
|
+
<operation name="deleteCustomer">
|
|
908
|
+
<documentation>
|
|
909
|
+
Delete the customer specified by CustNum
|
|
910
|
+
</documentation>
|
|
911
|
+
<input message="typens:deleteCustomer"/>
|
|
912
|
+
<output message="typens:deleteCustomerResponse"/>
|
|
913
|
+
</operation>
|
|
914
|
+
<operation name="deleteCustomerPaymentMethod">
|
|
915
|
+
<documentation>
|
|
916
|
+
Delete Payment Method
|
|
917
|
+
</documentation>
|
|
918
|
+
<input message="typens:deleteCustomerPaymentMethod"/>
|
|
919
|
+
<output message="typens:deleteCustomerPaymentMethodResponse"/>
|
|
920
|
+
</operation>
|
|
921
|
+
<operation name="deleteMerchant">
|
|
922
|
+
<documentation>
|
|
923
|
+
Request deletion of merchant account.
|
|
924
|
+
</documentation>
|
|
925
|
+
<input message="typens:deleteMerchant"/>
|
|
926
|
+
<output message="typens:deleteMerchantResponse"/>
|
|
927
|
+
</operation>
|
|
928
|
+
<operation name="disableCustomer">
|
|
929
|
+
<documentation>
|
|
930
|
+
Disable the recurring billing for the customer specified by CustNum
|
|
931
|
+
</documentation>
|
|
932
|
+
<input message="typens:disableCustomer"/>
|
|
933
|
+
<output message="typens:disableCustomerResponse"/>
|
|
934
|
+
</operation>
|
|
935
|
+
<operation name="enableCustomer">
|
|
936
|
+
<documentation>
|
|
937
|
+
Enable recurring billing for the customer specified by CustNum
|
|
938
|
+
</documentation>
|
|
939
|
+
<input message="typens:enableCustomer"/>
|
|
940
|
+
<output message="typens:enableCustomerResponse"/>
|
|
941
|
+
</operation>
|
|
942
|
+
<operation name="getAccountDetails">
|
|
943
|
+
<documentation>
|
|
944
|
+
Retrieves Information about Merchants account
|
|
945
|
+
</documentation>
|
|
946
|
+
<input message="typens:getAccountDetails"/>
|
|
947
|
+
<output message="typens:getAccountDetailsResponse"/>
|
|
948
|
+
</operation>
|
|
949
|
+
<operation name="getBatchStatus">
|
|
950
|
+
<documentation>
|
|
951
|
+
Retrieve the status of the batch specified by BatchNum
|
|
952
|
+
</documentation>
|
|
953
|
+
<input message="typens:getBatchStatus"/>
|
|
954
|
+
<output message="typens:getBatchStatusResponse"/>
|
|
955
|
+
</operation>
|
|
956
|
+
<operation name="getBatchTransactions">
|
|
957
|
+
<documentation>
|
|
958
|
+
Retrieve transactions in the batch specified by BatchNum
|
|
959
|
+
</documentation>
|
|
960
|
+
<input message="typens:getBatchTransactions"/>
|
|
961
|
+
<output message="typens:getBatchTransactionsResponse"/>
|
|
962
|
+
</operation>
|
|
963
|
+
<operation name="getBatchUploadStatus">
|
|
964
|
+
<documentation>
|
|
965
|
+
Retrieve the status of the currently running batch.
|
|
966
|
+
</documentation>
|
|
967
|
+
<input message="typens:getBatchUploadStatus"/>
|
|
968
|
+
<output message="typens:getBatchUploadStatusResponse"/>
|
|
969
|
+
</operation>
|
|
970
|
+
<operation name="getCustomer">
|
|
971
|
+
<documentation>
|
|
972
|
+
Retrieve the customer details for the given CustNum
|
|
973
|
+
</documentation>
|
|
974
|
+
<input message="typens:getCustomer"/>
|
|
975
|
+
<output message="typens:getCustomerResponse"/>
|
|
976
|
+
</operation>
|
|
977
|
+
<operation name="getCustomerHistory">
|
|
978
|
+
<documentation>
|
|
979
|
+
Pull details of all transactions run for CustNum
|
|
980
|
+
</documentation>
|
|
981
|
+
<input message="typens:getCustomerHistory"/>
|
|
982
|
+
<output message="typens:getCustomerHistoryResponse"/>
|
|
983
|
+
</operation>
|
|
984
|
+
<operation name="getMerchant">
|
|
985
|
+
<documentation>
|
|
986
|
+
Retreive Merchant Details
|
|
987
|
+
</documentation>
|
|
988
|
+
<input message="typens:getMerchant"/>
|
|
989
|
+
<output message="typens:getMerchantResponse"/>
|
|
990
|
+
</operation>
|
|
991
|
+
<operation name="getMerchantApplicationStatus">
|
|
992
|
+
<documentation>
|
|
993
|
+
Retrieve the status of a pending merchant application
|
|
994
|
+
</documentation>
|
|
995
|
+
<input message="typens:getMerchantApplicationStatus"/>
|
|
996
|
+
<output message="typens:getMerchantApplicationStatusResponse"/>
|
|
997
|
+
</operation>
|
|
998
|
+
<operation name="getMerchantSummary">
|
|
999
|
+
<documentation>
|
|
1000
|
+
Retreive Summary of Merchant Activity for the specified time span.
|
|
1001
|
+
</documentation>
|
|
1002
|
+
<input message="typens:getMerchantSummary"/>
|
|
1003
|
+
<output message="typens:getMerchantSummaryResponse"/>
|
|
1004
|
+
</operation>
|
|
1005
|
+
<operation name="getSupportedCurrencies">
|
|
1006
|
+
<documentation>
|
|
1007
|
+
Retrieve Supported Currencies
|
|
1008
|
+
</documentation>
|
|
1009
|
+
<input message="typens:getSupportedCurrencies"/>
|
|
1010
|
+
<output message="typens:getSupportedCurrenciesResponse"/>
|
|
1011
|
+
</operation>
|
|
1012
|
+
<operation name="getTransaction">
|
|
1013
|
+
<documentation>
|
|
1014
|
+
Retreive all information for the transactions specified by RefNum
|
|
1015
|
+
</documentation>
|
|
1016
|
+
<input message="typens:getTransaction"/>
|
|
1017
|
+
<output message="typens:getTransactionResponse"/>
|
|
1018
|
+
</operation>
|
|
1019
|
+
<operation name="getTransactionCustom">
|
|
1020
|
+
<documentation>
|
|
1021
|
+
Get Specific Transaction Details
|
|
1022
|
+
</documentation>
|
|
1023
|
+
<input message="typens:getTransactionCustom"/>
|
|
1024
|
+
<output message="typens:getTransactionCustomResponse"/>
|
|
1025
|
+
</operation>
|
|
1026
|
+
<operation name="getTransactionReport">
|
|
1027
|
+
<documentation>
|
|
1028
|
+
Pull a transaction report
|
|
1029
|
+
</documentation>
|
|
1030
|
+
<input message="typens:getTransactionReport"/>
|
|
1031
|
+
<output message="typens:getTransactionReportResponse"/>
|
|
1032
|
+
</operation>
|
|
1033
|
+
<operation name="getTransactionStatus">
|
|
1034
|
+
<documentation>
|
|
1035
|
+
Retrieve the current status of transaction specified by RefNum
|
|
1036
|
+
</documentation>
|
|
1037
|
+
<input message="typens:getTransactionStatus"/>
|
|
1038
|
+
<output message="typens:getTransactionStatusResponse"/>
|
|
1039
|
+
</operation>
|
|
1040
|
+
<operation name="pauseBatchUpload">
|
|
1041
|
+
<documentation>
|
|
1042
|
+
Pause a Batch Upload that is already running
|
|
1043
|
+
</documentation>
|
|
1044
|
+
<input message="typens:pauseBatchUpload"/>
|
|
1045
|
+
<output message="typens:pauseBatchUploadResponse"/>
|
|
1046
|
+
</operation>
|
|
1047
|
+
<operation name="postAuth">
|
|
1048
|
+
<documentation>
|
|
1049
|
+
Post an Offline Authorization
|
|
1050
|
+
</documentation>
|
|
1051
|
+
<input message="typens:postAuth"/>
|
|
1052
|
+
<output message="typens:postAuthResponse"/>
|
|
1053
|
+
</operation>
|
|
1054
|
+
<operation name="quickUpdateCustomer">
|
|
1055
|
+
<documentation>
|
|
1056
|
+
Update specified data for customer specified by CustNum
|
|
1057
|
+
</documentation>
|
|
1058
|
+
<input message="typens:quickUpdateCustomer"/>
|
|
1059
|
+
<output message="typens:quickUpdateCustomerResponse"/>
|
|
1060
|
+
</operation>
|
|
1061
|
+
<operation name="runBatchUpload">
|
|
1062
|
+
<documentation>
|
|
1063
|
+
Start a Paused Batch Upload
|
|
1064
|
+
</documentation>
|
|
1065
|
+
<input message="typens:runBatchUpload"/>
|
|
1066
|
+
<output message="typens:runBatchUploadResponse"/>
|
|
1067
|
+
</operation>
|
|
1068
|
+
<operation name="runCredit">
|
|
1069
|
+
<documentation>
|
|
1070
|
+
Run a Credit transaction
|
|
1071
|
+
</documentation>
|
|
1072
|
+
<input message="typens:runCredit"/>
|
|
1073
|
+
<output message="typens:runCreditResponse"/>
|
|
1074
|
+
</operation>
|
|
1075
|
+
<operation name="runCustomerTransaction">
|
|
1076
|
+
<documentation>
|
|
1077
|
+
Run a sale for a customer stored in the customer database
|
|
1078
|
+
</documentation>
|
|
1079
|
+
<input message="typens:runCustomerTransaction"/>
|
|
1080
|
+
<output message="typens:runCustomerTransactionResponse"/>
|
|
1081
|
+
</operation>
|
|
1082
|
+
<operation name="runQuickSale">
|
|
1083
|
+
<documentation>
|
|
1084
|
+
Run a sale based on the credit card details of a previous transaction.
|
|
1085
|
+
</documentation>
|
|
1086
|
+
<input message="typens:runQuickSale"/>
|
|
1087
|
+
<output message="typens:runQuickSaleResponse"/>
|
|
1088
|
+
</operation>
|
|
1089
|
+
<operation name="runSale">
|
|
1090
|
+
<documentation>
|
|
1091
|
+
Run a Sale
|
|
1092
|
+
</documentation>
|
|
1093
|
+
<input message="typens:runSale"/>
|
|
1094
|
+
<output message="typens:runSaleResponse"/>
|
|
1095
|
+
</operation>
|
|
1096
|
+
<operation name="runTransaction">
|
|
1097
|
+
<documentation>
|
|
1098
|
+
Runs a Transaction using the USAePay Transaction API
|
|
1099
|
+
</documentation>
|
|
1100
|
+
<input message="typens:runTransaction"/>
|
|
1101
|
+
<output message="typens:runTransactionResponse"/>
|
|
1102
|
+
</operation>
|
|
1103
|
+
<operation name="runTransactionAPI">
|
|
1104
|
+
<documentation>
|
|
1105
|
+
Provides a Soap wrapper for the USAePay Transaction API
|
|
1106
|
+
</documentation>
|
|
1107
|
+
<input message="typens:runTransactionAPI"/>
|
|
1108
|
+
<output message="typens:runTransactionAPIResponse"/>
|
|
1109
|
+
</operation>
|
|
1110
|
+
<operation name="searchBatches">
|
|
1111
|
+
<documentation>
|
|
1112
|
+
Search Settled Batches
|
|
1113
|
+
</documentation>
|
|
1114
|
+
<input message="typens:searchBatches"/>
|
|
1115
|
+
<output message="typens:searchBatchesResponse"/>
|
|
1116
|
+
</operation>
|
|
1117
|
+
<operation name="searchCustomerID">
|
|
1118
|
+
<documentation>
|
|
1119
|
+
Find the customer refnum (CustNum) associated with the userdefined CustID
|
|
1120
|
+
</documentation>
|
|
1121
|
+
<input message="typens:searchCustomerID"/>
|
|
1122
|
+
<output message="typens:searchCustomerIDResponse"/>
|
|
1123
|
+
</operation>
|
|
1124
|
+
<operation name="searchCustomers">
|
|
1125
|
+
<documentation>
|
|
1126
|
+
Search customer database
|
|
1127
|
+
</documentation>
|
|
1128
|
+
<input message="typens:searchCustomers"/>
|
|
1129
|
+
<output message="typens:searchCustomersResponse"/>
|
|
1130
|
+
</operation>
|
|
1131
|
+
<operation name="searchMerchants">
|
|
1132
|
+
<documentation>
|
|
1133
|
+
Search Active Merchants
|
|
1134
|
+
</documentation>
|
|
1135
|
+
<input message="typens:searchMerchants"/>
|
|
1136
|
+
<output message="typens:searchMerchantsResponse"/>
|
|
1137
|
+
</operation>
|
|
1138
|
+
<operation name="searchTransactions">
|
|
1139
|
+
<documentation>
|
|
1140
|
+
Search transactions and return transaction records
|
|
1141
|
+
</documentation>
|
|
1142
|
+
<input message="typens:searchTransactions"/>
|
|
1143
|
+
<output message="typens:searchTransactionsResponse"/>
|
|
1144
|
+
</operation>
|
|
1145
|
+
<operation name="searchTransactionsCustom">
|
|
1146
|
+
<documentation>
|
|
1147
|
+
Search Transactions and return specified fields
|
|
1148
|
+
</documentation>
|
|
1149
|
+
<input message="typens:searchTransactionsCustom"/>
|
|
1150
|
+
<output message="typens:searchTransactionsCustomResponse"/>
|
|
1151
|
+
</operation>
|
|
1152
|
+
<operation name="updateCustomer">
|
|
1153
|
+
<documentation>
|
|
1154
|
+
Replace all data for customer specified by CustNum
|
|
1155
|
+
</documentation>
|
|
1156
|
+
<input message="typens:updateCustomer"/>
|
|
1157
|
+
<output message="typens:updateCustomerResponse"/>
|
|
1158
|
+
</operation>
|
|
1159
|
+
<operation name="updateMerchant">
|
|
1160
|
+
<documentation>
|
|
1161
|
+
Update Merchant Details
|
|
1162
|
+
</documentation>
|
|
1163
|
+
<input message="typens:updateMerchant"/>
|
|
1164
|
+
<output message="typens:updateMerchantResponse"/>
|
|
1165
|
+
</operation>
|
|
1166
|
+
<operation name="voidTransaction">
|
|
1167
|
+
<documentation>
|
|
1168
|
+
Void the transaction specified by RefNum
|
|
1169
|
+
</documentation>
|
|
1170
|
+
<input message="typens:voidTransaction"/>
|
|
1171
|
+
<output message="typens:voidTransactionResponse"/>
|
|
1172
|
+
</operation>
|
|
1173
|
+
</portType>
|
|
1174
|
+
<binding name="ueSoapServerBinding" type="typens:ueSoapServerPortType">
|
|
1175
|
+
<soap:binding style="rpc" transport="http://schemas.xmlsoap.org/soap/http"/>
|
|
1176
|
+
<operation name="addCustomer">
|
|
1177
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1178
|
+
<input>
|
|
1179
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1180
|
+
</input>
|
|
1181
|
+
<output>
|
|
1182
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1183
|
+
</output>
|
|
1184
|
+
</operation>
|
|
1185
|
+
<operation name="addCustomerPaymentMethod">
|
|
1186
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1187
|
+
<input>
|
|
1188
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1189
|
+
</input>
|
|
1190
|
+
<output>
|
|
1191
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1192
|
+
</output>
|
|
1193
|
+
</operation>
|
|
1194
|
+
<operation name="addMerchantApplication">
|
|
1195
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1196
|
+
<input>
|
|
1197
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1198
|
+
</input>
|
|
1199
|
+
<output>
|
|
1200
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1201
|
+
</output>
|
|
1202
|
+
</operation>
|
|
1203
|
+
<operation name="bulkCurrencyConversion">
|
|
1204
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1205
|
+
<input>
|
|
1206
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1207
|
+
</input>
|
|
1208
|
+
<output>
|
|
1209
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1210
|
+
</output>
|
|
1211
|
+
</operation>
|
|
1212
|
+
<operation name="captureTransaction">
|
|
1213
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1214
|
+
<input>
|
|
1215
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1216
|
+
</input>
|
|
1217
|
+
<output>
|
|
1218
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1219
|
+
</output>
|
|
1220
|
+
</operation>
|
|
1221
|
+
<operation name="closeBatch">
|
|
1222
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1223
|
+
<input>
|
|
1224
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1225
|
+
</input>
|
|
1226
|
+
<output>
|
|
1227
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1228
|
+
</output>
|
|
1229
|
+
</operation>
|
|
1230
|
+
<operation name="createBatchUpload">
|
|
1231
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1232
|
+
<input>
|
|
1233
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1234
|
+
</input>
|
|
1235
|
+
<output>
|
|
1236
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1237
|
+
</output>
|
|
1238
|
+
</operation>
|
|
1239
|
+
<operation name="currencyConversion">
|
|
1240
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1241
|
+
<input>
|
|
1242
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1243
|
+
</input>
|
|
1244
|
+
<output>
|
|
1245
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1246
|
+
</output>
|
|
1247
|
+
</operation>
|
|
1248
|
+
<operation name="deleteCustomer">
|
|
1249
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1250
|
+
<input>
|
|
1251
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1252
|
+
</input>
|
|
1253
|
+
<output>
|
|
1254
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1255
|
+
</output>
|
|
1256
|
+
</operation>
|
|
1257
|
+
<operation name="deleteCustomerPaymentMethod">
|
|
1258
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1259
|
+
<input>
|
|
1260
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1261
|
+
</input>
|
|
1262
|
+
<output>
|
|
1263
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1264
|
+
</output>
|
|
1265
|
+
</operation>
|
|
1266
|
+
<operation name="deleteMerchant">
|
|
1267
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1268
|
+
<input>
|
|
1269
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1270
|
+
</input>
|
|
1271
|
+
<output>
|
|
1272
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1273
|
+
</output>
|
|
1274
|
+
</operation>
|
|
1275
|
+
<operation name="disableCustomer">
|
|
1276
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1277
|
+
<input>
|
|
1278
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1279
|
+
</input>
|
|
1280
|
+
<output>
|
|
1281
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1282
|
+
</output>
|
|
1283
|
+
</operation>
|
|
1284
|
+
<operation name="enableCustomer">
|
|
1285
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1286
|
+
<input>
|
|
1287
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1288
|
+
</input>
|
|
1289
|
+
<output>
|
|
1290
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1291
|
+
</output>
|
|
1292
|
+
</operation>
|
|
1293
|
+
<operation name="getAccountDetails">
|
|
1294
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1295
|
+
<input>
|
|
1296
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1297
|
+
</input>
|
|
1298
|
+
<output>
|
|
1299
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1300
|
+
</output>
|
|
1301
|
+
</operation>
|
|
1302
|
+
<operation name="getBatchStatus">
|
|
1303
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1304
|
+
<input>
|
|
1305
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1306
|
+
</input>
|
|
1307
|
+
<output>
|
|
1308
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1309
|
+
</output>
|
|
1310
|
+
</operation>
|
|
1311
|
+
<operation name="getBatchTransactions">
|
|
1312
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1313
|
+
<input>
|
|
1314
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1315
|
+
</input>
|
|
1316
|
+
<output>
|
|
1317
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1318
|
+
</output>
|
|
1319
|
+
</operation>
|
|
1320
|
+
<operation name="getBatchUploadStatus">
|
|
1321
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1322
|
+
<input>
|
|
1323
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1324
|
+
</input>
|
|
1325
|
+
<output>
|
|
1326
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1327
|
+
</output>
|
|
1328
|
+
</operation>
|
|
1329
|
+
<operation name="getCustomer">
|
|
1330
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1331
|
+
<input>
|
|
1332
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1333
|
+
</input>
|
|
1334
|
+
<output>
|
|
1335
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1336
|
+
</output>
|
|
1337
|
+
</operation>
|
|
1338
|
+
<operation name="getCustomerHistory">
|
|
1339
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1340
|
+
<input>
|
|
1341
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1342
|
+
</input>
|
|
1343
|
+
<output>
|
|
1344
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1345
|
+
</output>
|
|
1346
|
+
</operation>
|
|
1347
|
+
<operation name="getMerchant">
|
|
1348
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1349
|
+
<input>
|
|
1350
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1351
|
+
</input>
|
|
1352
|
+
<output>
|
|
1353
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1354
|
+
</output>
|
|
1355
|
+
</operation>
|
|
1356
|
+
<operation name="getMerchantApplicationStatus">
|
|
1357
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1358
|
+
<input>
|
|
1359
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1360
|
+
</input>
|
|
1361
|
+
<output>
|
|
1362
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1363
|
+
</output>
|
|
1364
|
+
</operation>
|
|
1365
|
+
<operation name="getMerchantSummary">
|
|
1366
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1367
|
+
<input>
|
|
1368
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1369
|
+
</input>
|
|
1370
|
+
<output>
|
|
1371
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1372
|
+
</output>
|
|
1373
|
+
</operation>
|
|
1374
|
+
<operation name="getSupportedCurrencies">
|
|
1375
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1376
|
+
<input>
|
|
1377
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1378
|
+
</input>
|
|
1379
|
+
<output>
|
|
1380
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1381
|
+
</output>
|
|
1382
|
+
</operation>
|
|
1383
|
+
<operation name="getTransaction">
|
|
1384
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1385
|
+
<input>
|
|
1386
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1387
|
+
</input>
|
|
1388
|
+
<output>
|
|
1389
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1390
|
+
</output>
|
|
1391
|
+
</operation>
|
|
1392
|
+
<operation name="getTransactionCustom">
|
|
1393
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1394
|
+
<input>
|
|
1395
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1396
|
+
</input>
|
|
1397
|
+
<output>
|
|
1398
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1399
|
+
</output>
|
|
1400
|
+
</operation>
|
|
1401
|
+
<operation name="getTransactionReport">
|
|
1402
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1403
|
+
<input>
|
|
1404
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1405
|
+
</input>
|
|
1406
|
+
<output>
|
|
1407
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1408
|
+
</output>
|
|
1409
|
+
</operation>
|
|
1410
|
+
<operation name="getTransactionStatus">
|
|
1411
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1412
|
+
<input>
|
|
1413
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1414
|
+
</input>
|
|
1415
|
+
<output>
|
|
1416
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1417
|
+
</output>
|
|
1418
|
+
</operation>
|
|
1419
|
+
<operation name="pauseBatchUpload">
|
|
1420
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1421
|
+
<input>
|
|
1422
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1423
|
+
</input>
|
|
1424
|
+
<output>
|
|
1425
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1426
|
+
</output>
|
|
1427
|
+
</operation>
|
|
1428
|
+
<operation name="postAuth">
|
|
1429
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1430
|
+
<input>
|
|
1431
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1432
|
+
</input>
|
|
1433
|
+
<output>
|
|
1434
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1435
|
+
</output>
|
|
1436
|
+
</operation>
|
|
1437
|
+
<operation name="quickUpdateCustomer">
|
|
1438
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1439
|
+
<input>
|
|
1440
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1441
|
+
</input>
|
|
1442
|
+
<output>
|
|
1443
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1444
|
+
</output>
|
|
1445
|
+
</operation>
|
|
1446
|
+
<operation name="runBatchUpload">
|
|
1447
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1448
|
+
<input>
|
|
1449
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1450
|
+
</input>
|
|
1451
|
+
<output>
|
|
1452
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1453
|
+
</output>
|
|
1454
|
+
</operation>
|
|
1455
|
+
<operation name="runCredit">
|
|
1456
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1457
|
+
<input>
|
|
1458
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1459
|
+
</input>
|
|
1460
|
+
<output>
|
|
1461
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1462
|
+
</output>
|
|
1463
|
+
</operation>
|
|
1464
|
+
<operation name="runCustomerTransaction">
|
|
1465
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1466
|
+
<input>
|
|
1467
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1468
|
+
</input>
|
|
1469
|
+
<output>
|
|
1470
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1471
|
+
</output>
|
|
1472
|
+
</operation>
|
|
1473
|
+
<operation name="runQuickSale">
|
|
1474
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1475
|
+
<input>
|
|
1476
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1477
|
+
</input>
|
|
1478
|
+
<output>
|
|
1479
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1480
|
+
</output>
|
|
1481
|
+
</operation>
|
|
1482
|
+
<operation name="runSale">
|
|
1483
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1484
|
+
<input>
|
|
1485
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1486
|
+
</input>
|
|
1487
|
+
<output>
|
|
1488
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1489
|
+
</output>
|
|
1490
|
+
</operation>
|
|
1491
|
+
<operation name="runTransaction">
|
|
1492
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1493
|
+
<input>
|
|
1494
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1495
|
+
</input>
|
|
1496
|
+
<output>
|
|
1497
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1498
|
+
</output>
|
|
1499
|
+
</operation>
|
|
1500
|
+
<operation name="runTransactionAPI">
|
|
1501
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1502
|
+
<input>
|
|
1503
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1504
|
+
</input>
|
|
1505
|
+
<output>
|
|
1506
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1507
|
+
</output>
|
|
1508
|
+
</operation>
|
|
1509
|
+
<operation name="searchBatches">
|
|
1510
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1511
|
+
<input>
|
|
1512
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1513
|
+
</input>
|
|
1514
|
+
<output>
|
|
1515
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1516
|
+
</output>
|
|
1517
|
+
</operation>
|
|
1518
|
+
<operation name="searchCustomerID">
|
|
1519
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1520
|
+
<input>
|
|
1521
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1522
|
+
</input>
|
|
1523
|
+
<output>
|
|
1524
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1525
|
+
</output>
|
|
1526
|
+
</operation>
|
|
1527
|
+
<operation name="searchCustomers">
|
|
1528
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1529
|
+
<input>
|
|
1530
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1531
|
+
</input>
|
|
1532
|
+
<output>
|
|
1533
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1534
|
+
</output>
|
|
1535
|
+
</operation>
|
|
1536
|
+
<operation name="searchMerchants">
|
|
1537
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1538
|
+
<input>
|
|
1539
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1540
|
+
</input>
|
|
1541
|
+
<output>
|
|
1542
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1543
|
+
</output>
|
|
1544
|
+
</operation>
|
|
1545
|
+
<operation name="searchTransactions">
|
|
1546
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1547
|
+
<input>
|
|
1548
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1549
|
+
</input>
|
|
1550
|
+
<output>
|
|
1551
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1552
|
+
</output>
|
|
1553
|
+
</operation>
|
|
1554
|
+
<operation name="searchTransactionsCustom">
|
|
1555
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1556
|
+
<input>
|
|
1557
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1558
|
+
</input>
|
|
1559
|
+
<output>
|
|
1560
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1561
|
+
</output>
|
|
1562
|
+
</operation>
|
|
1563
|
+
<operation name="updateCustomer">
|
|
1564
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1565
|
+
<input>
|
|
1566
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1567
|
+
</input>
|
|
1568
|
+
<output>
|
|
1569
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1570
|
+
</output>
|
|
1571
|
+
</operation>
|
|
1572
|
+
<operation name="updateMerchant">
|
|
1573
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1574
|
+
<input>
|
|
1575
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1576
|
+
</input>
|
|
1577
|
+
<output>
|
|
1578
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1579
|
+
</output>
|
|
1580
|
+
</operation>
|
|
1581
|
+
<operation name="voidTransaction">
|
|
1582
|
+
<soap:operation soapAction="urn:ueSoapServerAction"/>
|
|
1583
|
+
<input>
|
|
1584
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1585
|
+
</input>
|
|
1586
|
+
<output>
|
|
1587
|
+
<soap:body namespace="urn:usaepay" use="encoded" encodingStyle="http://schemas.xmlsoap.org/soap/encoding/"/>
|
|
1588
|
+
</output>
|
|
1589
|
+
</operation>
|
|
1590
|
+
</binding>
|
|
1591
|
+
<service name="usaepayService">
|
|
1592
|
+
<port name="ueSoapServerPort" binding="typens:ueSoapServerBinding">
|
|
1593
|
+
<soap:address location="https://www.usaepay.com/soap/gate/1CEDAB88"/>
|
|
1594
|
+
</port>
|
|
1595
|
+
</service>
|
|
1596
|
+
</definitions>
|