easybill 0.2.17
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +24 -0
- data/.rspec +2 -0
- data/.ruby-version +1 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +74 -0
- data/easybill.gemspec +28 -0
- data/lib/easybill.rb +52 -0
- data/lib/easybill/client.rb +116 -0
- data/lib/easybill/configuration.rb +43 -0
- data/lib/easybill/customer.rb +4 -0
- data/lib/easybill/document.rb +34 -0
- data/lib/easybill/error.rb +3 -0
- data/lib/easybill/payment.rb +4 -0
- data/lib/easybill/railtie.rb +12 -0
- data/lib/easybill/version.rb +3 -0
- data/lib/sekken_patches/importer.rb +8 -0
- data/spec/easybill/client_spec.rb +189 -0
- data/spec/easybill/configuration_spec.rb +30 -0
- data/spec/easybill/document_spec.rb +41 -0
- data/spec/easybill_spec.rb +14 -0
- data/spec/fixtures/fixtures.yml +98 -0
- data/spec/fixtures/vcr_cassettes/add_document_payment_-_adds_a_payment_.yml +1677 -0
- data/spec/fixtures/vcr_cassettes/create_document_-_raises_Easybill_Error_if_unsuccessful_.yml +1669 -0
- data/spec/fixtures/vcr_cassettes/create_document_-_returns_an_Easybill_Document_on_success_.yml +1677 -0
- data/spec/fixtures/vcr_cassettes/create_dunning_-_creates_a_warning_.yml +1742 -0
- data/spec/fixtures/vcr_cassettes/find_documents_by_document_number_-_finds_documents_.yml +1671 -0
- data/spec/fixtures/vcr_cassettes/get_customer_-_raises_Easybill_Error_if_unsuccessful_.yml +1678 -0
- data/spec/fixtures/vcr_cassettes/get_customer_-_returns_an_Easybill_Customer_on_success_.yml +1727 -0
- data/spec/fixtures/vcr_cassettes/get_customer_by_customer_number_-_raises_Easybill_Error_if_unsuccessful_.yml +1678 -0
- data/spec/fixtures/vcr_cassettes/get_customer_by_customer_number_-_returns_an_Easybill_Customer_on_success_.yml +1671 -0
- data/spec/fixtures/vcr_cassettes/get_document_payments_-_returns_an_array_of_Easybill_Payment_on_success_.yml +1727 -0
- data/spec/fixtures/vcr_cassettes/get_document_pdf_-_returns_a_document_PDF_.yml +1727 -0
- data/spec/fixtures/vcr_cassettes/get_document_sent_-_receives_sent_date_.yml +1727 -0
- data/spec/fixtures/vcr_cassettes/get_documents_-_returns_an_Easybill_Document_array_on_success_.yml +1729 -0
- data/spec/fixtures/vcr_cassettes/get_documents_-_returns_an_empty_array_if_there_are_no_documents_.yml +1675 -0
- data/spec/fixtures/vcr_cassettes/local_copy_5c31767ec9fc284da7e4858f3580fb50.yml +1177 -0
- data/spec/fixtures/vcr_cassettes/search_customers_-_returns_an_array_of_matching_Easybill_Customers_.yml +2754 -0
- data/spec/fixtures/vcr_cassettes/search_customers_-_returns_an_empty_array_when_no_customers_are_found_.yml +1671 -0
- data/spec/fixtures/vcr_cassettes/set_customer_-_raises_Easybill_Error_if_unsuccessful_.yml +1700 -0
- data/spec/fixtures/vcr_cassettes/set_customer_-_returns_an_Easybill_Customer_on_success_.yml +1687 -0
- data/spec/spec_helper.rb +54 -0
- data/spec/support/fixture.rb +16 -0
- data/spec/support/matchers.rb +6 -0
- data/spec/support/method_interceptor.rb +56 -0
- data/wsdl/soap.companyposition.xsd +235 -0
- data/wsdl/soap.customer.xsd +773 -0
- data/wsdl/soap.document.xsd +799 -0
- data/wsdl/soap.easybill.wsdl +1087 -0
- metadata +219 -0
@@ -0,0 +1,1087 @@
|
|
1
|
+
<?xml version="1.0" encoding="UTF-8"?>
|
2
|
+
<wsdl:definitions xmlns:easybill="http://www.easybill.de/webservice/"
|
3
|
+
xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap/"
|
4
|
+
xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/"
|
5
|
+
xmlns:xsd="http://www.w3.org/2001/XMLSchema"
|
6
|
+
xmlns:customer="http://www.easybill.de/webservice/customer/"
|
7
|
+
xmlns:companyposition="http://www.easybill.de/webservice/companyposition/"
|
8
|
+
xmlns:document="http://www.easybill.de/webservice/document/"
|
9
|
+
name="easybill"
|
10
|
+
targetNamespace="http://www.easybill.de/webservice/">
|
11
|
+
|
12
|
+
<wsdl:types>
|
13
|
+
|
14
|
+
<xsd:schema targetNamespace="http://www.easybill.de/webservice/">
|
15
|
+
|
16
|
+
<xsd:import namespace="http://www.easybill.de/webservice/customer/"
|
17
|
+
schemaLocation="WSDL_PATH/soap.customer.xsd" />
|
18
|
+
|
19
|
+
<xsd:import namespace="http://www.easybill.de/webservice/companyposition/"
|
20
|
+
schemaLocation="WSDL_PATH/soap.companyposition.xsd" />
|
21
|
+
|
22
|
+
<xsd:import namespace="http://www.easybill.de/webservice/document/"
|
23
|
+
schemaLocation="WSDL_PATH/soap.document.xsd" />
|
24
|
+
|
25
|
+
<xsd:simpleType name="AuthKeyType">
|
26
|
+
<xsd:restriction base="xsd:string">
|
27
|
+
<xsd:minLength value="64" />
|
28
|
+
<xsd:maxLength value="64" />
|
29
|
+
</xsd:restriction>
|
30
|
+
</xsd:simpleType>
|
31
|
+
|
32
|
+
<xsd:simpleType name="UserAgentType">
|
33
|
+
<xsd:restriction base="xsd:string">
|
34
|
+
<xsd:maxLength value="100" />
|
35
|
+
</xsd:restriction>
|
36
|
+
</xsd:simpleType>
|
37
|
+
|
38
|
+
<xsd:complexType name="EasybillFaultType">
|
39
|
+
<xsd:sequence>
|
40
|
+
<xsd:element name="code" type="xsd:integer" />
|
41
|
+
</xsd:sequence>
|
42
|
+
</xsd:complexType>
|
43
|
+
|
44
|
+
<xsd:complexType name="IllegalAccessFaultType">
|
45
|
+
<xsd:sequence>
|
46
|
+
<xsd:element name="authkey" type="xsd:string" />
|
47
|
+
</xsd:sequence>
|
48
|
+
</xsd:complexType>
|
49
|
+
|
50
|
+
<xsd:complexType name="DataNotValidFaultType">
|
51
|
+
<xsd:sequence>
|
52
|
+
<xsd:element name="datafield" type="xsd:string" />
|
53
|
+
</xsd:sequence>
|
54
|
+
</xsd:complexType>
|
55
|
+
|
56
|
+
<xsd:element name="EasybillFault" type="easybill:EasybillFaultType"/>
|
57
|
+
<xsd:element name="IllegalAccessFault" type="easybill:IllegalAccessFaultType"/>
|
58
|
+
<xsd:element name="DataNotValidFault" type="easybill:DataNotValidFaultType" />
|
59
|
+
<xsd:element name="UserAuthKey" type="easybill:AuthKeyType" />
|
60
|
+
<xsd:element name="UserAgent" type="easybill:UserAgentType" />
|
61
|
+
|
62
|
+
</xsd:schema>
|
63
|
+
|
64
|
+
|
65
|
+
</wsdl:types>
|
66
|
+
|
67
|
+
<wsdl:message name="UserAuthKeyMessage">
|
68
|
+
<wsdl:part element="easybill:UserAuthKey" name="HeaderAuthKey" />
|
69
|
+
<wsdl:part element="easybill:UserAgent" name="UserAgent" />
|
70
|
+
</wsdl:message>
|
71
|
+
|
72
|
+
|
73
|
+
<!-- customer -->
|
74
|
+
<wsdl:message name="GetCustomerRequest">
|
75
|
+
<wsdl:part element="customer:GetCustomerRequest" name="customerID" />
|
76
|
+
</wsdl:message>
|
77
|
+
<wsdl:message name="GetCustomerResponse">
|
78
|
+
<wsdl:part element="customer:GetCustomerResponse" name="customer" />
|
79
|
+
</wsdl:message>
|
80
|
+
|
81
|
+
<wsdl:message name="GetCustomerByCustomerNumberRequest">
|
82
|
+
<wsdl:part element="customer:GetCustomerByCustomerNumberRequest" name="customerNumber" />
|
83
|
+
</wsdl:message>
|
84
|
+
<wsdl:message name="GetCustomerByCustomerNumberResponse">
|
85
|
+
<wsdl:part element="customer:GetCustomerByCustomerNumberResponse" name="customer" />
|
86
|
+
</wsdl:message>
|
87
|
+
|
88
|
+
<wsdl:message name="SetCustomerRequest">
|
89
|
+
<wsdl:part element="customer:SetCustomerRequest" name="customer" />
|
90
|
+
</wsdl:message>
|
91
|
+
<wsdl:message name="SetCustomerResponse">
|
92
|
+
<wsdl:part element="customer:SetCustomerResponse" name="customer" />
|
93
|
+
</wsdl:message>
|
94
|
+
|
95
|
+
<wsdl:message name="SearchCustomersRequest">
|
96
|
+
<wsdl:part element="customer:SearchCustomersRequest" name="searchInfo" />
|
97
|
+
</wsdl:message>
|
98
|
+
<wsdl:message name="SearchCustomersResponse">
|
99
|
+
<wsdl:part element="customer:SearchCustomersResponse" name="customers" />
|
100
|
+
</wsdl:message>
|
101
|
+
|
102
|
+
<wsdl:message name="DeleteCustomerRequest">
|
103
|
+
<wsdl:part element="customer:DeleteCustomerRequest" name="customerID" />
|
104
|
+
</wsdl:message>
|
105
|
+
<wsdl:message name="DeleteCustomerResponse" />
|
106
|
+
|
107
|
+
<!-- customer group -->
|
108
|
+
<wsdl:message name="GetCustomerGroupRequest">
|
109
|
+
<wsdl:part element="customer:GetCustomerGroupRequest" name="customergroupid" />
|
110
|
+
</wsdl:message>
|
111
|
+
<wsdl:message name="GetCustomerGroupResponse">
|
112
|
+
<wsdl:part element="customer:GetCustomerGroupResponse" name="customergroup" />
|
113
|
+
</wsdl:message>
|
114
|
+
<wsdl:message name="SetCustomerGroupRequest">
|
115
|
+
<wsdl:part element="customer:SetCustomerGroupRequest" name="customergroup" />
|
116
|
+
</wsdl:message>
|
117
|
+
<wsdl:message name="SetCustomerGroupResponse">
|
118
|
+
<wsdl:part element="customer:SetCustomerGroupResponse" name="customergroup" />
|
119
|
+
</wsdl:message>
|
120
|
+
<wsdl:message name="getAllCustomerGroups">
|
121
|
+
<wsdl:part element="customer:getAllCustomerGroupsPHPBugfix" name="nothing" />
|
122
|
+
</wsdl:message>
|
123
|
+
<wsdl:message name="GetAllCustomerGroupsResponse">
|
124
|
+
<wsdl:part element="customer:AllCustomerGroupsResponse" name="customergroups" />
|
125
|
+
</wsdl:message>
|
126
|
+
|
127
|
+
<!-- company position -->
|
128
|
+
<wsdl:message name="GetCompanyPositionRequest">
|
129
|
+
<wsdl:part element="companyposition:GetCompanyPositionRequest" name="companypositionId" />
|
130
|
+
</wsdl:message>
|
131
|
+
<wsdl:message name="GetCompanyPositionResponse">
|
132
|
+
<wsdl:part element="companyposition:GetCompanyPositionResponse" name="companyposition" />
|
133
|
+
</wsdl:message>
|
134
|
+
|
135
|
+
<wsdl:message name="SetCompanyPositionRequest">
|
136
|
+
<wsdl:part element="companyposition:SetCompanyPositionRequest" name="companyposition" />
|
137
|
+
</wsdl:message>
|
138
|
+
<wsdl:message name="SetCompanyPositionResponse">
|
139
|
+
<wsdl:part element="companyposition:SetCompanyPositionResponse" name="companyposition" />
|
140
|
+
</wsdl:message>
|
141
|
+
|
142
|
+
<wsdl:message name="SearchCompanyPositionsRequest">
|
143
|
+
<wsdl:part element="companyposition:SearchCompanyPositionsRequest" name="searchInfo" />
|
144
|
+
</wsdl:message>
|
145
|
+
<wsdl:message name="SearchCompanyPositionsResponse">
|
146
|
+
<wsdl:part element="companyposition:SearchCompanyPositionsResponse" name="companyposition" />
|
147
|
+
</wsdl:message>
|
148
|
+
|
149
|
+
<!-- company position groups -->
|
150
|
+
<wsdl:message name="GetCompanyPositionGroupRequest">
|
151
|
+
<wsdl:part element="companyposition:GetCompanyPositionGroupRequest" name="companypositiongroupid" />
|
152
|
+
</wsdl:message>
|
153
|
+
<wsdl:message name="GetCompanyPositionGroupResponse">
|
154
|
+
<wsdl:part element="companyposition:GetCompanyPositionGroupResponse" name="companypositiongroup" />
|
155
|
+
</wsdl:message>
|
156
|
+
<wsdl:message name="SetCompanyPositionGroupRequest">
|
157
|
+
<wsdl:part element="companyposition:SetCompanyPositionGroupRequest" name="companypositiongroup" />
|
158
|
+
</wsdl:message>
|
159
|
+
<wsdl:message name="SetCompanyPositionGroupResponse">
|
160
|
+
<wsdl:part element="companyposition:SetCompanyPositionGroupResponse" name="companypositiongroup" />
|
161
|
+
</wsdl:message>
|
162
|
+
<wsdl:message name="GetAllCompanyPositionGroupsRequest">
|
163
|
+
<wsdl:part element="companyposition:AllCompanyPositionGroupsRequestPHPBugfix" name="nothing" />
|
164
|
+
</wsdl:message>
|
165
|
+
<wsdl:message name="GetAllCompanyPositionGroupsResponse">
|
166
|
+
<wsdl:part element="companyposition:AllCompanyPositionGroupsResponse" name="companypositiongroups" />
|
167
|
+
</wsdl:message>
|
168
|
+
|
169
|
+
<!-- create document -->
|
170
|
+
<wsdl:message name="CreateDocumentRequestMessage">
|
171
|
+
<wsdl:part element="document:CreateDocumentRequest" name="documentdetails" />
|
172
|
+
</wsdl:message>
|
173
|
+
<wsdl:message name="CreateDocumentResponseMessage">
|
174
|
+
<wsdl:part element="document:CreateDocumentResponse" name="document" />
|
175
|
+
</wsdl:message>
|
176
|
+
|
177
|
+
<!-- create reminder -->
|
178
|
+
<wsdl:message name="CreateReminderRequestMessage">
|
179
|
+
<wsdl:part element="document:CreateReminderRequest" name="details" />
|
180
|
+
</wsdl:message>
|
181
|
+
<wsdl:message name="CreateReminderResponseMessage">
|
182
|
+
<wsdl:part element="document:CreateReminderResponse" name="document" />
|
183
|
+
</wsdl:message>
|
184
|
+
|
185
|
+
<!-- create dunning -->
|
186
|
+
<wsdl:message name="CreateDunningRequestMessage">
|
187
|
+
<wsdl:part element="document:CreateDunningRequest" name="details" />
|
188
|
+
</wsdl:message>
|
189
|
+
<wsdl:message name="CreateDunningResponseMessage">
|
190
|
+
<wsdl:part element="document:CreateDunningResponse" name="document" />
|
191
|
+
</wsdl:message>
|
192
|
+
|
193
|
+
<!-- Get documents -->
|
194
|
+
<wsdl:message name="GetDocumentsRequestMessage">
|
195
|
+
<wsdl:part element="document:GetDocumentsRequest" name="customer" />
|
196
|
+
</wsdl:message>
|
197
|
+
<wsdl:message name="GetDocumentsResponseMessage">
|
198
|
+
<wsdl:part element="document:GetDocumentsResponse" name="documents" />
|
199
|
+
</wsdl:message>
|
200
|
+
|
201
|
+
<!-- Get document -->
|
202
|
+
<wsdl:message name="GetDocumentRequestMessage">
|
203
|
+
<wsdl:part element="document:GetDocumentRequest" name="documentid" />
|
204
|
+
</wsdl:message>
|
205
|
+
<wsdl:message name="GetDocumentResponseMessage">
|
206
|
+
<wsdl:part element="document:GetDocumentResponse" name="document" />
|
207
|
+
</wsdl:message>
|
208
|
+
|
209
|
+
<!-- Get documents -->
|
210
|
+
<wsdl:message name="FindDocumentsByDocumentNumberRequestMessage">
|
211
|
+
<wsdl:part element="document:FindDocumentsByDocumentNumberRequest" name="documentNumber" />
|
212
|
+
</wsdl:message>
|
213
|
+
<wsdl:message name="FindDocumentsByDocumentNumberResponseMessage">
|
214
|
+
<wsdl:part element="document:FindDocumentsByDocumentNumberResponse" name="documents" />
|
215
|
+
</wsdl:message>
|
216
|
+
|
217
|
+
<!-- Get pdf document -->
|
218
|
+
<wsdl:message name="GetDocumentPDFRequestMessage">
|
219
|
+
<wsdl:part element="document:GetDocumentPDFRequest" name="documentid" />
|
220
|
+
</wsdl:message>
|
221
|
+
<wsdl:message name="GetDocumentPDFResponseMessage">
|
222
|
+
<wsdl:part element="document:GetDocumentPDFResponse" name="document" />
|
223
|
+
</wsdl:message>
|
224
|
+
|
225
|
+
<!-- to cancel document -->
|
226
|
+
<wsdl:message name="ToCancelDocumentRequestMessage">
|
227
|
+
<wsdl:part element="document:ToCancelDocumentRequest" name="requestData" />
|
228
|
+
</wsdl:message>
|
229
|
+
<wsdl:message name="ToCancelDocumentResponseMessage">
|
230
|
+
<wsdl:part element="document:ToCancelDocumentResponse" name="document" />
|
231
|
+
</wsdl:message>
|
232
|
+
|
233
|
+
<!-- to credit document -->
|
234
|
+
<wsdl:message name="ToCreditDocumentRequestMessage">
|
235
|
+
<wsdl:part element="document:ToCreditDocumentRequest" name="requestData" />
|
236
|
+
</wsdl:message>
|
237
|
+
<wsdl:message name="ToCreditDocumentResponseMessage">
|
238
|
+
<wsdl:part element="document:ToCreditDocumentResponse" name="document" />
|
239
|
+
</wsdl:message>
|
240
|
+
|
241
|
+
<!-- add payment -->
|
242
|
+
<wsdl:message name="AddDocumentPaymentRequestMessage">
|
243
|
+
<wsdl:part element="document:AddDocumentPaymentRequest" name="payment" />
|
244
|
+
</wsdl:message>
|
245
|
+
<wsdl:message name="AddDocumentPaymentResponseMessage">
|
246
|
+
<wsdl:part element="document:AddDocumentPaymentResponse" name="result" />
|
247
|
+
</wsdl:message>
|
248
|
+
|
249
|
+
<!-- get payment -->
|
250
|
+
<wsdl:message name="GetDocumentPaymentsRequestMessage">
|
251
|
+
<wsdl:part element="document:GetDocumentPaymentsRequest" name="documentid" />
|
252
|
+
</wsdl:message>
|
253
|
+
<wsdl:message name="GetDocumentPaymentsResponseMessage">
|
254
|
+
<wsdl:part element="document:GetDocumentPaymentsResponse" name="result" />
|
255
|
+
</wsdl:message>
|
256
|
+
|
257
|
+
<!-- get sent -->
|
258
|
+
<wsdl:message name="GetDocumentSentRequestMessage">
|
259
|
+
<wsdl:part element="document:GetDocumentSentRequest" name="documentid" />
|
260
|
+
</wsdl:message>
|
261
|
+
<wsdl:message name="GetDocumentSentResponseMessage">
|
262
|
+
<wsdl:part element="document:GetDocumentSentResponse" name="result" />
|
263
|
+
</wsdl:message>
|
264
|
+
|
265
|
+
<!-- Faults -->
|
266
|
+
<wsdl:message name="EasybillFaultMessage">
|
267
|
+
<wsdl:part element="easybill:EasybillFault" name="parameters" />
|
268
|
+
</wsdl:message>
|
269
|
+
<wsdl:message name="IllegalAccessFaultMessage">
|
270
|
+
<wsdl:part element="easybill:IllegalAccessFault" name="parameters" />
|
271
|
+
</wsdl:message>
|
272
|
+
<wsdl:message name="DataNotValidFaultMessage">
|
273
|
+
<wsdl:part element="easybill:DataNotValidFault" name="parameters" />
|
274
|
+
</wsdl:message>
|
275
|
+
|
276
|
+
<!-- fault messages customer -->
|
277
|
+
<wsdl:message name="CustomerNotFoundFaultMessage">
|
278
|
+
<wsdl:part element="customer:CustomerNotFoundFault" name="parameters" />
|
279
|
+
</wsdl:message>
|
280
|
+
<wsdl:message name="CustomerGroupNotFoundFaultMessage">
|
281
|
+
<wsdl:part element="customer:CustomerGroupNotFoundFault" name="parameters" />
|
282
|
+
</wsdl:message>
|
283
|
+
|
284
|
+
<!-- fault messages company position -->
|
285
|
+
<wsdl:message name="CompanyPositionNotFoundFaultMessage">
|
286
|
+
<wsdl:part element="companyposition:CompanyPositionNotFoundFault" name="parameters" />
|
287
|
+
</wsdl:message>
|
288
|
+
<wsdl:message name="CompanyPositionGroupNotFoundFaultMessage">
|
289
|
+
<wsdl:part element="companyposition:CompanyPositionGroupNotFoundFault" name="parameters" />
|
290
|
+
</wsdl:message>
|
291
|
+
|
292
|
+
<!-- fault messages document -->
|
293
|
+
<wsdl:message name="DocumentNotFoundFaultMessage">
|
294
|
+
<wsdl:part element="document:DocumentNotFoundFault" name="parameters" />
|
295
|
+
</wsdl:message>
|
296
|
+
|
297
|
+
|
298
|
+
|
299
|
+
|
300
|
+
<wsdl:portType name="easybillPortType">
|
301
|
+
<wsdl:operation name="getCustomer">
|
302
|
+
<wsdl:documentation>Gibt den Kunden mit der ID zurück</wsdl:documentation>
|
303
|
+
<wsdl:input message="easybill:GetCustomerRequest" />
|
304
|
+
<wsdl:output message="easybill:GetCustomerResponse" />
|
305
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
306
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
307
|
+
<wsdl:fault name="CustomerNotFoundFault" message="easybill:CustomerNotFoundFaultMessage" />
|
308
|
+
</wsdl:operation>
|
309
|
+
|
310
|
+
<wsdl:operation name="getCustomerByCustomerNumber">
|
311
|
+
<wsdl:documentation>Gibt den Kunden mit der Kundennummer zurück</wsdl:documentation>
|
312
|
+
<wsdl:input message="easybill:GetCustomerByCustomerNumberRequest" />
|
313
|
+
<wsdl:output message="easybill:GetCustomerByCustomerNumberResponse" />
|
314
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
315
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
316
|
+
<wsdl:fault name="CustomerNotFoundFault" message="easybill:CustomerNotFoundFaultMessage" />
|
317
|
+
</wsdl:operation>
|
318
|
+
|
319
|
+
<wsdl:operation name="setCustomer">
|
320
|
+
<wsdl:documentation>Anlegen oder Bearbeiten eines Kunden.
|
321
|
+
Anlegen geschieht automatisch, falls die CustomerID null ist.</wsdl:documentation>
|
322
|
+
<wsdl:input message="easybill:SetCustomerRequest" />
|
323
|
+
<wsdl:output message="easybill:SetCustomerResponse" />
|
324
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
325
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
326
|
+
<wsdl:fault name="CustomerNotFoundFault" message="easybill:CustomerNotFoundFaultMessage" />
|
327
|
+
<wsdl:fault name="DataNotValidFault" message="easybill:DataNotValidFaultMessage" />
|
328
|
+
</wsdl:operation>
|
329
|
+
|
330
|
+
<wsdl:operation name="searchCustomers">
|
331
|
+
<wsdl:documentation>Suche alle Kunden, eingeschränkt auf den Suchstring</wsdl:documentation>
|
332
|
+
<wsdl:input message="easybill:SearchCustomersRequest" />
|
333
|
+
<wsdl:output message="easybill:SearchCustomersResponse" />
|
334
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
335
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
336
|
+
</wsdl:operation>
|
337
|
+
<wsdl:operation name="deleteCustomer">
|
338
|
+
<wsdl:documentation>Löscht den Kunden mit der Kunden-ID</wsdl:documentation>
|
339
|
+
<wsdl:input message="easybill:DeleteCustomerRequest" />
|
340
|
+
<wsdl:output message="easybill:DeleteCustomerResponse" />
|
341
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
342
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
343
|
+
<wsdl:fault name="CustomerNotFoundFault" message="easybill:CustomerNotFoundFaultMessage" />
|
344
|
+
</wsdl:operation>
|
345
|
+
|
346
|
+
|
347
|
+
<wsdl:operation name="getCustomerGroup">
|
348
|
+
<wsdl:documentation>Gibt eine Kundengruppe zurück</wsdl:documentation>
|
349
|
+
<wsdl:input message="easybill:GetCustomerGroupRequest" />
|
350
|
+
<wsdl:output message="easybill:GetCustomerGroupResponse" />
|
351
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
352
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
353
|
+
<wsdl:fault name="CustomerGroupNotFoundFault" message="easybill:CustomerGroupNotFoundFaultMessage" />
|
354
|
+
</wsdl:operation>
|
355
|
+
<wsdl:operation name="setCustomerGroup">
|
356
|
+
<wsdl:documentation>Erstellt oder bearbeitet einen Kundengruppe.
|
357
|
+
Erstellen geschieht automatisch, falls customergroupid null ist.</wsdl:documentation>
|
358
|
+
<wsdl:input message="easybill:SetCustomerGroupRequest" />
|
359
|
+
<wsdl:output message="easybill:SetCustomerGroupResponse" />
|
360
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
361
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
362
|
+
<wsdl:fault name="DataNotValidFault" message="easybill:DataNotValidFaultMessage" />
|
363
|
+
</wsdl:operation>
|
364
|
+
<wsdl:operation name="getAllCustomerGroups">
|
365
|
+
<wsdl:documentation>Gibt alle gespeicherten Kundengruppen zurück</wsdl:documentation>
|
366
|
+
<wsdl:input message="easybill:getAllCustomerGroups" />
|
367
|
+
<wsdl:output message="easybill:GetAllCustomerGroupsResponse" />
|
368
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
369
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
370
|
+
</wsdl:operation>
|
371
|
+
|
372
|
+
|
373
|
+
<wsdl:operation name="getCompanyPosition">
|
374
|
+
<wsdl:documentation>Gibt den Rechnungsposten zurück</wsdl:documentation>
|
375
|
+
<wsdl:input message="easybill:GetCompanyPositionRequest" />
|
376
|
+
<wsdl:output message="easybill:GetCompanyPositionResponse" />
|
377
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
378
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
379
|
+
<wsdl:fault name="CompanyPositionNotFoundFault" message="easybill:CompanyPositionNotFoundFaultMessage" />
|
380
|
+
</wsdl:operation>
|
381
|
+
|
382
|
+
<wsdl:operation name="setCompanyPosition">
|
383
|
+
<wsdl:documentation>Erstellt oder bearbeitet Rechnungsposten.
|
384
|
+
Erstellen geschieht automatisch, falls companypositionid null ist.</wsdl:documentation>
|
385
|
+
<wsdl:input message="easybill:SetCompanyPositionRequest" />
|
386
|
+
<wsdl:output message="easybill:SetCompanyPositionResponse" />
|
387
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
388
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
389
|
+
<wsdl:fault name="CompanyPositionNotFoundFault" message="easybill:CompanyPositionNotFoundFaultMessage" />
|
390
|
+
<wsdl:fault name="DataNotValidFault" message="easybill:DataNotValidFaultMessage" />
|
391
|
+
</wsdl:operation>
|
392
|
+
|
393
|
+
<wsdl:operation name="searchCompanyPositions">
|
394
|
+
<wsdl:documentation>Suche eine bestimmte Menge von Rechnungsposten</wsdl:documentation>
|
395
|
+
<wsdl:input message="easybill:SearchCompanyPositionsRequest" />
|
396
|
+
<wsdl:output message="easybill:SearchCompanyPositionsResponse" />
|
397
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
398
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
399
|
+
</wsdl:operation>
|
400
|
+
|
401
|
+
|
402
|
+
<wsdl:operation name="getCompanyPositionGroup">
|
403
|
+
<wsdl:documentation>Gibt die bestimmte Rechnungspostengruppe zurück</wsdl:documentation>
|
404
|
+
<wsdl:input message="easybill:GetCompanyPositionGroupRequest" />
|
405
|
+
<wsdl:output message="easybill:GetCompanyPositionGroupResponse" />
|
406
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
407
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
408
|
+
<wsdl:fault name="CompanyPositionGroupNotFoundFault" message="easybill:CompanyPositionGroupNotFoundFaultMessage" />
|
409
|
+
</wsdl:operation>
|
410
|
+
<wsdl:operation name="setCompanyPositionGroup">
|
411
|
+
<wsdl:documentation>Erstellt oder bearbeitet einen Rechnungspostengruppe.
|
412
|
+
Erstellen geschieht automatisch, falls companypositiongroupid null ist.</wsdl:documentation>
|
413
|
+
<wsdl:input message="easybill:SetCompanyPositionGroupRequest" />
|
414
|
+
<wsdl:output message="easybill:SetCompanyPositionGroupResponse" />
|
415
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
416
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
417
|
+
<wsdl:fault name="DataNotValidFault" message="easybill:DataNotValidFaultMessage" />
|
418
|
+
</wsdl:operation>
|
419
|
+
<wsdl:operation name="getAllCompanyPositionGroups">
|
420
|
+
<wsdl:documentation>Gibt alle Rechnungspostengruppen zurück</wsdl:documentation>
|
421
|
+
<wsdl:input message="easybill:GetAllCompanyPositionGroupsRequest" />
|
422
|
+
<wsdl:output message="easybill:GetAllCompanyPositionGroupsResponse" />
|
423
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
424
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
425
|
+
</wsdl:operation>
|
426
|
+
|
427
|
+
<!-- create documents not reminder -->
|
428
|
+
<wsdl:operation name="createDocument">
|
429
|
+
<wsdl:documentation>Erstellt ein Dokument, keine Mahnung</wsdl:documentation>
|
430
|
+
<wsdl:input message="easybill:CreateDocumentRequestMessage" />
|
431
|
+
<wsdl:output message="easybill:CreateDocumentResponseMessage" />
|
432
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
433
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
434
|
+
</wsdl:operation>
|
435
|
+
|
436
|
+
<!-- create reminder -->
|
437
|
+
<wsdl:operation name="createReminder">
|
438
|
+
<wsdl:documentation>Erstellt eine Erinnerung</wsdl:documentation>
|
439
|
+
<wsdl:input message="easybill:CreateReminderRequestMessage" />
|
440
|
+
<wsdl:output message="easybill:CreateReminderResponseMessage" />
|
441
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
442
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
443
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
444
|
+
</wsdl:operation>
|
445
|
+
|
446
|
+
<!-- create dunning -->
|
447
|
+
<wsdl:operation name="createDunning">
|
448
|
+
<wsdl:documentation>Erstellt eine Mahnung</wsdl:documentation>
|
449
|
+
<wsdl:input message="easybill:CreateDunningRequestMessage" />
|
450
|
+
<wsdl:output message="easybill:CreateDunningResponseMessage" />
|
451
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
452
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
453
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
454
|
+
</wsdl:operation>
|
455
|
+
|
456
|
+
<wsdl:operation name="getDocuments">
|
457
|
+
<wsdl:documentation>Gibt alle Dokumente eines Kunden zurück</wsdl:documentation>
|
458
|
+
<wsdl:input message="easybill:GetDocumentsRequestMessage" />
|
459
|
+
<wsdl:output message="easybill:GetDocumentsResponseMessage" />
|
460
|
+
<wsdl:fault name="CustomerNotFoundFault" message="easybill:CustomerNotFoundFaultMessage" />
|
461
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
462
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
463
|
+
</wsdl:operation>
|
464
|
+
|
465
|
+
<wsdl:operation name="findDocumentsByDocumentNumber">
|
466
|
+
<wsdl:documentation>Gibt alle Dokumente zurück die die gesuchte Dokumentnummer tragen</wsdl:documentation>
|
467
|
+
<wsdl:input message="easybill:FindDocumentsByDocumentNumberRequestMessage" />
|
468
|
+
<wsdl:output message="easybill:FindDocumentsByDocumentNumberResponseMessage" />
|
469
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
470
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
471
|
+
</wsdl:operation>
|
472
|
+
|
473
|
+
<wsdl:operation name="getDocument">
|
474
|
+
<wsdl:documentation>Gibt ein spezielles Dokument zurück</wsdl:documentation>
|
475
|
+
<wsdl:input message="easybill:GetDocumentRequestMessage" />
|
476
|
+
<wsdl:output message="easybill:GetDocumentResponseMessage" />
|
477
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
478
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
479
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
480
|
+
</wsdl:operation>
|
481
|
+
|
482
|
+
<wsdl:operation name="getDocumentPDF">
|
483
|
+
<wsdl:documentation>Gibt das PDF zu einem Dokument zurück</wsdl:documentation>
|
484
|
+
<wsdl:input message="easybill:GetDocumentPDFRequestMessage" />
|
485
|
+
<wsdl:output message="easybill:GetDocumentPDFResponseMessage" />
|
486
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
487
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
488
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
489
|
+
</wsdl:operation>
|
490
|
+
|
491
|
+
<wsdl:operation name="toCancelDocument">
|
492
|
+
<wsdl:documentation>Storniert ein document</wsdl:documentation>
|
493
|
+
<wsdl:input message="easybill:ToCancelDocumentRequestMessage" />
|
494
|
+
<wsdl:output message="easybill:ToCancelDocumentResponseMessage" />
|
495
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
496
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
497
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
498
|
+
</wsdl:operation>
|
499
|
+
|
500
|
+
<wsdl:operation name="toCreditDocument">
|
501
|
+
<wsdl:documentation>erstellt aus einem Dokument eine Gutschrift</wsdl:documentation>
|
502
|
+
<wsdl:input message="easybill:ToCreditDocumentRequestMessage" />
|
503
|
+
<wsdl:output message="easybill:ToCreditDocumentResponseMessage" />
|
504
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
505
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
506
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
507
|
+
</wsdl:operation>
|
508
|
+
|
509
|
+
<wsdl:operation name="addDocumentPayment">
|
510
|
+
<wsdl:documentation>Hängt eine neue Zahlung an das Dokument an</wsdl:documentation>
|
511
|
+
<wsdl:input message="easybill:AddDocumentPaymentRequestMessage" />
|
512
|
+
<wsdl:output message="easybill:AddDocumentPaymentResponseMessage" />
|
513
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
514
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
515
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
516
|
+
</wsdl:operation>
|
517
|
+
|
518
|
+
<wsdl:operation name="getDocumentPayments">
|
519
|
+
<wsdl:documentation>Gibt alle Zahlungen eines Dokuments zurück</wsdl:documentation>
|
520
|
+
<wsdl:input message="easybill:GetDocumentPaymentsRequestMessage" />
|
521
|
+
<wsdl:output message="easybill:GetDocumentPaymentsResponseMessage" />
|
522
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
523
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
524
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
525
|
+
</wsdl:operation>
|
526
|
+
|
527
|
+
<wsdl:operation name="getDocumentSent">
|
528
|
+
<wsdl:documentation>Gibt alle Versandzeiten eines Dokuments zurück</wsdl:documentation>
|
529
|
+
<wsdl:input message="easybill:GetDocumentSentRequestMessage" />
|
530
|
+
<wsdl:output message="easybill:GetDocumentSentResponseMessage" />
|
531
|
+
<wsdl:fault name="DocumentNotFoundFault" message="easybill:DocumentNotFoundFaultMessage" />
|
532
|
+
<wsdl:fault name="EasybillFault" message="easybill:EasybillFaultMessage" />
|
533
|
+
<wsdl:fault name="IllegalAccessFault" message="easybill:IllegalAccessFaultMessage" />
|
534
|
+
</wsdl:operation>
|
535
|
+
|
536
|
+
</wsdl:portType>
|
537
|
+
|
538
|
+
|
539
|
+
|
540
|
+
<wsdl:binding name="easybillBinding" type="easybill:easybillPortType">
|
541
|
+
<soap:binding style="document" transport="http://schemas.xmlsoap.org/soap/http" />
|
542
|
+
|
543
|
+
<wsdl:operation name="getCustomer">
|
544
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/getCustomer" />
|
545
|
+
<wsdl:input>
|
546
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
547
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
548
|
+
<soap:body use="literal" />
|
549
|
+
</wsdl:input>
|
550
|
+
<wsdl:output>
|
551
|
+
<soap:body use="literal" />
|
552
|
+
</wsdl:output>
|
553
|
+
|
554
|
+
<wsdl:fault name="EasybillFault">
|
555
|
+
<soap:fault name="EasybillFault" use="literal" />
|
556
|
+
</wsdl:fault>
|
557
|
+
<wsdl:fault name="IllegalAccessFault">
|
558
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
559
|
+
</wsdl:fault>
|
560
|
+
<wsdl:fault name="CustomerNotFoundFault">
|
561
|
+
<soap:fault name="CustomerNotFoundFault" use="literal" />
|
562
|
+
</wsdl:fault>
|
563
|
+
</wsdl:operation>
|
564
|
+
|
565
|
+
<wsdl:operation name="getCustomerByCustomerNumber">
|
566
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/getCustomerByCustomerNumber" />
|
567
|
+
<wsdl:input>
|
568
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
569
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
570
|
+
<soap:body use="literal" />
|
571
|
+
</wsdl:input>
|
572
|
+
<wsdl:output>
|
573
|
+
<soap:body use="literal" />
|
574
|
+
</wsdl:output>
|
575
|
+
<wsdl:fault name="EasybillFault">
|
576
|
+
<soap:fault name="EasybillFault" use="literal" />
|
577
|
+
</wsdl:fault>
|
578
|
+
<wsdl:fault name="IllegalAccessFault">
|
579
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
580
|
+
</wsdl:fault>
|
581
|
+
<wsdl:fault name="CustomerNotFoundFault">
|
582
|
+
<soap:fault name="CustomerNotFoundFault" use="literal" />
|
583
|
+
</wsdl:fault>
|
584
|
+
</wsdl:operation>
|
585
|
+
|
586
|
+
<wsdl:operation name="setCustomer">
|
587
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/SetCustomer" />
|
588
|
+
<wsdl:input>
|
589
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
590
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
591
|
+
<soap:body use="literal" />
|
592
|
+
</wsdl:input>
|
593
|
+
<wsdl:output>
|
594
|
+
<soap:body use="literal" />
|
595
|
+
</wsdl:output>
|
596
|
+
<wsdl:fault name="EasybillFault">
|
597
|
+
<soap:fault name="EasybillFault" use="literal" />
|
598
|
+
</wsdl:fault>
|
599
|
+
<wsdl:fault name="IllegalAccessFault">
|
600
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
601
|
+
</wsdl:fault>
|
602
|
+
<wsdl:fault name="CustomerNotFoundFault">
|
603
|
+
<soap:fault name="CustomerNotFoundFault" use="literal" />
|
604
|
+
</wsdl:fault>
|
605
|
+
<wsdl:fault name="DataNotValidFault">
|
606
|
+
<soap:fault name="DataNotValidFault" use="literal" />
|
607
|
+
</wsdl:fault>
|
608
|
+
</wsdl:operation>
|
609
|
+
|
610
|
+
|
611
|
+
<wsdl:operation name="searchCustomers">
|
612
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/searchCustomers" />
|
613
|
+
<wsdl:input>
|
614
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
615
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
616
|
+
<soap:body use="literal" />
|
617
|
+
</wsdl:input>
|
618
|
+
<wsdl:output>
|
619
|
+
<soap:body use="literal" />
|
620
|
+
</wsdl:output>
|
621
|
+
<wsdl:fault name="EasybillFault">
|
622
|
+
<soap:fault name="EasybillFault" use="literal" />
|
623
|
+
</wsdl:fault>
|
624
|
+
<wsdl:fault name="IllegalAccessFault">
|
625
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
626
|
+
</wsdl:fault>
|
627
|
+
</wsdl:operation>
|
628
|
+
|
629
|
+
<wsdl:operation name="deleteCustomer">
|
630
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/deleteCustomer" />
|
631
|
+
<wsdl:input>
|
632
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
633
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
634
|
+
<soap:body use="literal" />
|
635
|
+
</wsdl:input>
|
636
|
+
<wsdl:output>
|
637
|
+
<soap:body use="literal" />
|
638
|
+
</wsdl:output>
|
639
|
+
<wsdl:fault name="EasybillFault">
|
640
|
+
<soap:fault name="EasybillFault" use="literal" />
|
641
|
+
</wsdl:fault>
|
642
|
+
<wsdl:fault name="IllegalAccessFault">
|
643
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
644
|
+
</wsdl:fault>
|
645
|
+
<wsdl:fault name="CustomerNotFoundFault">
|
646
|
+
<soap:fault name="CustomerNotFoundFault" use="literal" />
|
647
|
+
</wsdl:fault>
|
648
|
+
</wsdl:operation>
|
649
|
+
|
650
|
+
<wsdl:operation name="getCustomerGroup">
|
651
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/getCustomerGroup" />
|
652
|
+
<wsdl:input>
|
653
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
654
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
655
|
+
<soap:body use="literal" />
|
656
|
+
</wsdl:input>
|
657
|
+
<wsdl:output>
|
658
|
+
<soap:body use="literal" />
|
659
|
+
</wsdl:output>
|
660
|
+
<wsdl:fault name="EasybillFault">
|
661
|
+
<soap:fault name="EasybillFault" use="literal" />
|
662
|
+
</wsdl:fault>
|
663
|
+
<wsdl:fault name="IllegalAccessFault">
|
664
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
665
|
+
</wsdl:fault>
|
666
|
+
<wsdl:fault name="CustomerGroupNotFoundFault">
|
667
|
+
<soap:fault name="CustomerGroupNotFoundFault" use="literal" />
|
668
|
+
</wsdl:fault>
|
669
|
+
</wsdl:operation>
|
670
|
+
<wsdl:operation name="setCustomerGroup">
|
671
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/setCustomerGroup" />
|
672
|
+
<wsdl:input>
|
673
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
674
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
675
|
+
<soap:body use="literal" />
|
676
|
+
</wsdl:input>
|
677
|
+
<wsdl:output>
|
678
|
+
<soap:body use="literal" />
|
679
|
+
</wsdl:output>
|
680
|
+
<wsdl:fault name="EasybillFault">
|
681
|
+
<soap:fault name="EasybillFault" use="literal" />
|
682
|
+
</wsdl:fault>
|
683
|
+
<wsdl:fault name="IllegalAccessFault">
|
684
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
685
|
+
</wsdl:fault>
|
686
|
+
<wsdl:fault name="DataNotValidFault">
|
687
|
+
<soap:fault name="DataNotValidFault" use="literal" />
|
688
|
+
</wsdl:fault>
|
689
|
+
</wsdl:operation>
|
690
|
+
<wsdl:operation name="getAllCustomerGroups">
|
691
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/getAllCustomerGroups" />
|
692
|
+
<wsdl:input>
|
693
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
694
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
695
|
+
<soap:body use="literal" />
|
696
|
+
</wsdl:input>
|
697
|
+
<wsdl:output>
|
698
|
+
<soap:body use="literal" />
|
699
|
+
</wsdl:output>
|
700
|
+
<wsdl:fault name="EasybillFault">
|
701
|
+
<soap:fault name="EasybillFault" use="literal" />
|
702
|
+
</wsdl:fault>
|
703
|
+
<wsdl:fault name="IllegalAccessFault">
|
704
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
705
|
+
</wsdl:fault>
|
706
|
+
</wsdl:operation>
|
707
|
+
|
708
|
+
|
709
|
+
<!-- company positions -->
|
710
|
+
<wsdl:operation name="getCompanyPosition">
|
711
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/getCompanyPosition" />
|
712
|
+
<wsdl:input>
|
713
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
714
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
715
|
+
<soap:body use="literal" />
|
716
|
+
</wsdl:input>
|
717
|
+
<wsdl:output>
|
718
|
+
<soap:body use="literal" />
|
719
|
+
</wsdl:output>
|
720
|
+
|
721
|
+
<wsdl:fault name="EasybillFault">
|
722
|
+
<soap:fault name="EasybillFault" use="literal" />
|
723
|
+
</wsdl:fault>
|
724
|
+
<wsdl:fault name="IllegalAccessFault">
|
725
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
726
|
+
</wsdl:fault>
|
727
|
+
<wsdl:fault name="CompanyPositionNotFoundFault">
|
728
|
+
<soap:fault name="CompanyPositionNotFoundFault" use="literal" />
|
729
|
+
</wsdl:fault>
|
730
|
+
</wsdl:operation>
|
731
|
+
|
732
|
+
<wsdl:operation name="setCompanyPosition">
|
733
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/SetCompanyPosition" />
|
734
|
+
<wsdl:input>
|
735
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
736
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
737
|
+
<soap:body use="literal" />
|
738
|
+
</wsdl:input>
|
739
|
+
<wsdl:output>
|
740
|
+
<soap:body use="literal" />
|
741
|
+
</wsdl:output>
|
742
|
+
<wsdl:fault name="EasybillFault">
|
743
|
+
<soap:fault name="EasybillFault" use="literal" />
|
744
|
+
</wsdl:fault>
|
745
|
+
<wsdl:fault name="IllegalAccessFault">
|
746
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
747
|
+
</wsdl:fault>
|
748
|
+
<wsdl:fault name="CompanyPositionNotFoundFault">
|
749
|
+
<soap:fault name="CompanyPositionNotFoundFault" use="literal" />
|
750
|
+
</wsdl:fault>
|
751
|
+
<wsdl:fault name="DataNotValidFault">
|
752
|
+
<soap:fault name="DataNotValidFault" use="literal" />
|
753
|
+
</wsdl:fault>
|
754
|
+
</wsdl:operation>
|
755
|
+
|
756
|
+
|
757
|
+
<wsdl:operation name="searchCompanyPositions">
|
758
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/customer/searchCustomers" />
|
759
|
+
<wsdl:input>
|
760
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
761
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
762
|
+
<soap:body use="literal" />
|
763
|
+
</wsdl:input>
|
764
|
+
<wsdl:output>
|
765
|
+
<soap:body use="literal" />
|
766
|
+
</wsdl:output>
|
767
|
+
<wsdl:fault name="EasybillFault">
|
768
|
+
<soap:fault name="EasybillFault" use="literal" />
|
769
|
+
</wsdl:fault>
|
770
|
+
<wsdl:fault name="IllegalAccessFault">
|
771
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
772
|
+
</wsdl:fault>
|
773
|
+
</wsdl:operation>
|
774
|
+
|
775
|
+
<!-- company position groups -->
|
776
|
+
<wsdl:operation name="getCompanyPositionGroup">
|
777
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/companyposition/getCompanyPositionGroup" />
|
778
|
+
<wsdl:input>
|
779
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
780
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
781
|
+
<soap:body use="literal" />
|
782
|
+
</wsdl:input>
|
783
|
+
<wsdl:output>
|
784
|
+
<soap:body use="literal" />
|
785
|
+
</wsdl:output>
|
786
|
+
<wsdl:fault name="EasybillFault">
|
787
|
+
<soap:fault name="EasybillFault" use="literal" />
|
788
|
+
</wsdl:fault>
|
789
|
+
<wsdl:fault name="IllegalAccessFault">
|
790
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
791
|
+
</wsdl:fault>
|
792
|
+
<wsdl:fault name="CompanyPositionGroupNotFoundFault">
|
793
|
+
<soap:fault name="CompanyPositionGroupNotFoundFault" use="literal" />
|
794
|
+
</wsdl:fault>
|
795
|
+
</wsdl:operation>
|
796
|
+
<wsdl:operation name="setCompanyPositionGroup">
|
797
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/companyposition/setCompanyPositionGroup" />
|
798
|
+
<wsdl:input>
|
799
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
800
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
801
|
+
<soap:body use="literal" />
|
802
|
+
</wsdl:input>
|
803
|
+
<wsdl:output>
|
804
|
+
<soap:body use="literal" />
|
805
|
+
</wsdl:output>
|
806
|
+
<wsdl:fault name="EasybillFault">
|
807
|
+
<soap:fault name="EasybillFault" use="literal" />
|
808
|
+
</wsdl:fault>
|
809
|
+
<wsdl:fault name="IllegalAccessFault">
|
810
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
811
|
+
</wsdl:fault>
|
812
|
+
<wsdl:fault name="DataNotValidFault">
|
813
|
+
<soap:fault name="DataNotValidFault" use="literal" />
|
814
|
+
</wsdl:fault>
|
815
|
+
</wsdl:operation>
|
816
|
+
<wsdl:operation name="getAllCompanyPositionGroups">
|
817
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/companyposition/allCompanyPositionGroups" />
|
818
|
+
<wsdl:input>
|
819
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
820
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
821
|
+
<soap:body use="literal" />
|
822
|
+
</wsdl:input>
|
823
|
+
<wsdl:output>
|
824
|
+
<soap:body use="literal" />
|
825
|
+
</wsdl:output>
|
826
|
+
<wsdl:fault name="EasybillFault">
|
827
|
+
<soap:fault name="EasybillFault" use="literal" />
|
828
|
+
</wsdl:fault>
|
829
|
+
<wsdl:fault name="IllegalAccessFault">
|
830
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
831
|
+
</wsdl:fault>
|
832
|
+
</wsdl:operation>
|
833
|
+
|
834
|
+
<wsdl:operation name="createDocument">
|
835
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/createDocument" />
|
836
|
+
<wsdl:input>
|
837
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
838
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
839
|
+
<soap:body use="literal" />
|
840
|
+
</wsdl:input>
|
841
|
+
<wsdl:output>
|
842
|
+
<soap:body use="literal" />
|
843
|
+
</wsdl:output>
|
844
|
+
<wsdl:fault name="EasybillFault">
|
845
|
+
<soap:fault name="EasybillFault" use="literal" />
|
846
|
+
</wsdl:fault>
|
847
|
+
<wsdl:fault name="IllegalAccessFault">
|
848
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
849
|
+
</wsdl:fault>
|
850
|
+
</wsdl:operation>
|
851
|
+
|
852
|
+
<wsdl:operation name="createReminder">
|
853
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/createReminder" />
|
854
|
+
<wsdl:input>
|
855
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
856
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
857
|
+
<soap:body use="literal" />
|
858
|
+
</wsdl:input>
|
859
|
+
<wsdl:output>
|
860
|
+
<soap:body use="literal" />
|
861
|
+
</wsdl:output>
|
862
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
863
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
864
|
+
</wsdl:fault>
|
865
|
+
<wsdl:fault name="EasybillFault">
|
866
|
+
<soap:fault name="EasybillFault" use="literal" />
|
867
|
+
</wsdl:fault>
|
868
|
+
<wsdl:fault name="IllegalAccessFault">
|
869
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
870
|
+
</wsdl:fault>
|
871
|
+
</wsdl:operation>
|
872
|
+
|
873
|
+
<wsdl:operation name="createDunning">
|
874
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/createDunning" />
|
875
|
+
<wsdl:input>
|
876
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
877
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
878
|
+
<soap:body use="literal" />
|
879
|
+
</wsdl:input>
|
880
|
+
<wsdl:output>
|
881
|
+
<soap:body use="literal" />
|
882
|
+
</wsdl:output>
|
883
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
884
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
885
|
+
</wsdl:fault>
|
886
|
+
<wsdl:fault name="EasybillFault">
|
887
|
+
<soap:fault name="EasybillFault" use="literal" />
|
888
|
+
</wsdl:fault>
|
889
|
+
<wsdl:fault name="IllegalAccessFault">
|
890
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
891
|
+
</wsdl:fault>
|
892
|
+
</wsdl:operation>
|
893
|
+
|
894
|
+
<wsdl:operation name="getDocuments">
|
895
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/getDocuments" />
|
896
|
+
<wsdl:input>
|
897
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
898
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
899
|
+
<soap:body use="literal" />
|
900
|
+
</wsdl:input>
|
901
|
+
<wsdl:output>
|
902
|
+
<soap:body use="literal" />
|
903
|
+
</wsdl:output>
|
904
|
+
<wsdl:fault name="CustomerNotFoundFault">
|
905
|
+
<soap:fault name="CustomerNotFoundFault" use="literal" />
|
906
|
+
</wsdl:fault>
|
907
|
+
<wsdl:fault name="EasybillFault">
|
908
|
+
<soap:fault name="EasybillFault" use="literal" />
|
909
|
+
</wsdl:fault>
|
910
|
+
<wsdl:fault name="IllegalAccessFault">
|
911
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
912
|
+
</wsdl:fault>
|
913
|
+
</wsdl:operation>
|
914
|
+
|
915
|
+
<wsdl:operation name="findDocumentsByDocumentNumber">
|
916
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/findDocumentsByDocumentNumber" />
|
917
|
+
<wsdl:input>
|
918
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
919
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
920
|
+
<soap:body use="literal" />
|
921
|
+
</wsdl:input>
|
922
|
+
<wsdl:output>
|
923
|
+
<soap:body use="literal" />
|
924
|
+
</wsdl:output>
|
925
|
+
<wsdl:fault name="EasybillFault">
|
926
|
+
<soap:fault name="EasybillFault" use="literal" />
|
927
|
+
</wsdl:fault>
|
928
|
+
<wsdl:fault name="IllegalAccessFault">
|
929
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
930
|
+
</wsdl:fault>
|
931
|
+
</wsdl:operation>
|
932
|
+
|
933
|
+
<wsdl:operation name="getDocument">
|
934
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/getDocument" />
|
935
|
+
<wsdl:input>
|
936
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
937
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
938
|
+
<soap:body use="literal" />
|
939
|
+
</wsdl:input>
|
940
|
+
<wsdl:output>
|
941
|
+
<soap:body use="literal" />
|
942
|
+
</wsdl:output>
|
943
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
944
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
945
|
+
</wsdl:fault>
|
946
|
+
<wsdl:fault name="EasybillFault">
|
947
|
+
<soap:fault name="EasybillFault" use="literal" />
|
948
|
+
</wsdl:fault>
|
949
|
+
<wsdl:fault name="IllegalAccessFault">
|
950
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
951
|
+
</wsdl:fault>
|
952
|
+
</wsdl:operation>
|
953
|
+
|
954
|
+
<wsdl:operation name="getDocumentPDF">
|
955
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/getDocumentPDF" />
|
956
|
+
<wsdl:input>
|
957
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
958
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
959
|
+
<soap:body use="literal" />
|
960
|
+
</wsdl:input>
|
961
|
+
<wsdl:output>
|
962
|
+
<soap:body use="literal" />
|
963
|
+
</wsdl:output>
|
964
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
965
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
966
|
+
</wsdl:fault>
|
967
|
+
<wsdl:fault name="EasybillFault">
|
968
|
+
<soap:fault name="EasybillFault" use="literal" />
|
969
|
+
</wsdl:fault>
|
970
|
+
<wsdl:fault name="IllegalAccessFault">
|
971
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
972
|
+
</wsdl:fault>
|
973
|
+
</wsdl:operation>
|
974
|
+
|
975
|
+
<wsdl:operation name="toCancelDocument">
|
976
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/toCancelDocument" />
|
977
|
+
<wsdl:input>
|
978
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
979
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
980
|
+
<soap:body use="literal" />
|
981
|
+
</wsdl:input>
|
982
|
+
<wsdl:output>
|
983
|
+
<soap:body use="literal" />
|
984
|
+
</wsdl:output>
|
985
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
986
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
987
|
+
</wsdl:fault>
|
988
|
+
<wsdl:fault name="EasybillFault">
|
989
|
+
<soap:fault name="EasybillFault" use="literal" />
|
990
|
+
</wsdl:fault>
|
991
|
+
<wsdl:fault name="IllegalAccessFault">
|
992
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
993
|
+
</wsdl:fault>
|
994
|
+
</wsdl:operation>
|
995
|
+
|
996
|
+
<wsdl:operation name="toCreditDocument">
|
997
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/documents/toCreditDocument" />
|
998
|
+
<wsdl:input>
|
999
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
1000
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
1001
|
+
<soap:body use="literal" />
|
1002
|
+
</wsdl:input>
|
1003
|
+
<wsdl:output>
|
1004
|
+
<soap:body use="literal" />
|
1005
|
+
</wsdl:output>
|
1006
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
1007
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
1008
|
+
</wsdl:fault>
|
1009
|
+
<wsdl:fault name="EasybillFault">
|
1010
|
+
<soap:fault name="EasybillFault" use="literal" />
|
1011
|
+
</wsdl:fault>
|
1012
|
+
<wsdl:fault name="IllegalAccessFault">
|
1013
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
1014
|
+
</wsdl:fault>
|
1015
|
+
</wsdl:operation>
|
1016
|
+
|
1017
|
+
<wsdl:operation name="addDocumentPayment">
|
1018
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/payments/addDocumentPayment" />
|
1019
|
+
<wsdl:input>
|
1020
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
1021
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
1022
|
+
<soap:body use="literal" />
|
1023
|
+
</wsdl:input>
|
1024
|
+
<wsdl:output>
|
1025
|
+
<soap:body use="literal" />
|
1026
|
+
</wsdl:output>
|
1027
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
1028
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
1029
|
+
</wsdl:fault>
|
1030
|
+
<wsdl:fault name="EasybillFault">
|
1031
|
+
<soap:fault name="EasybillFault" use="literal" />
|
1032
|
+
</wsdl:fault>
|
1033
|
+
<wsdl:fault name="IllegalAccessFault">
|
1034
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
1035
|
+
</wsdl:fault>
|
1036
|
+
</wsdl:operation>
|
1037
|
+
|
1038
|
+
<wsdl:operation name="getDocumentPayments">
|
1039
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/payments/getDocumentPayments" />
|
1040
|
+
<wsdl:input>
|
1041
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
1042
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
1043
|
+
<soap:body use="literal" />
|
1044
|
+
</wsdl:input>
|
1045
|
+
<wsdl:output>
|
1046
|
+
<soap:body use="literal" />
|
1047
|
+
</wsdl:output>
|
1048
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
1049
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
1050
|
+
</wsdl:fault>
|
1051
|
+
<wsdl:fault name="EasybillFault">
|
1052
|
+
<soap:fault name="EasybillFault" use="literal" />
|
1053
|
+
</wsdl:fault>
|
1054
|
+
<wsdl:fault name="IllegalAccessFault">
|
1055
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
1056
|
+
</wsdl:fault>
|
1057
|
+
</wsdl:operation>
|
1058
|
+
|
1059
|
+
<wsdl:operation name="getDocumentSent">
|
1060
|
+
<soap:operation soapAction="http://www.easybill.de/webservice/payments/getDocumentSent" />
|
1061
|
+
<wsdl:input>
|
1062
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="HeaderAuthKey" use="literal" />
|
1063
|
+
<soap:header message="easybill:UserAuthKeyMessage" part="UserAgent" use="literal" />
|
1064
|
+
<soap:body use="literal" />
|
1065
|
+
</wsdl:input>
|
1066
|
+
<wsdl:output>
|
1067
|
+
<soap:body use="literal" />
|
1068
|
+
</wsdl:output>
|
1069
|
+
<wsdl:fault name="DocumentNotFoundFault">
|
1070
|
+
<soap:fault name="DocumentNotFoundFault" use="literal" />
|
1071
|
+
</wsdl:fault>
|
1072
|
+
<wsdl:fault name="EasybillFault">
|
1073
|
+
<soap:fault name="EasybillFault" use="literal" />
|
1074
|
+
</wsdl:fault>
|
1075
|
+
<wsdl:fault name="IllegalAccessFault">
|
1076
|
+
<soap:fault name="IllegalAccessFault" use="literal" />
|
1077
|
+
</wsdl:fault>
|
1078
|
+
</wsdl:operation>
|
1079
|
+
|
1080
|
+
</wsdl:binding>
|
1081
|
+
<wsdl:service name="easybillService">
|
1082
|
+
<wsdl:port binding="easybill:easybillBinding" name="easybillPort">
|
1083
|
+
<!-- http://devel.easybill.de -->
|
1084
|
+
<soap:address location="https://soap2.easybill.de/webservices/webservice4/soap.easybill.php" />
|
1085
|
+
</wsdl:port>
|
1086
|
+
</wsdl:service>
|
1087
|
+
</wsdl:definitions>
|