soapy_cake 0.3.4 → 1.0.0

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.
Files changed (47) hide show
  1. checksums.yaml +4 -4
  2. data/.rspec +1 -0
  3. data/api_versions.yml +110 -110
  4. data/lib/soapy_cake.rb +10 -2
  5. data/lib/soapy_cake/admin.rb +34 -46
  6. data/lib/soapy_cake/affiliate.rb +5 -17
  7. data/lib/soapy_cake/client.rb +33 -3
  8. data/lib/soapy_cake/error.rb +4 -0
  9. data/lib/soapy_cake/helper.rb +16 -0
  10. data/lib/soapy_cake/request.rb +61 -0
  11. data/lib/soapy_cake/response.rb +48 -0
  12. data/lib/soapy_cake/version.rb +1 -1
  13. data/soapy_cake.gemspec +4 -4
  14. data/spec/fixtures/vcr_cassettes/Integration_test/raises_if_there_is_an_error.yml +50 -0
  15. data/spec/fixtures/vcr_cassettes/Integration_test/returns_an_affiliate_with_correct_data_types.yml +114 -0
  16. data/spec/lib/soapy_cake/admin_spec.rb +87 -199
  17. data/spec/lib/soapy_cake/affiliate_spec.rb +19 -39
  18. data/spec/lib/soapy_cake/integration_spec.rb +25 -0
  19. data/spec/spec_helper.rb +2 -0
  20. metadata +14 -55
  21. data/lib/soapy_cake/advertiser.rb +0 -21
  22. data/lib/soapy_cake/client/cake_client.rb +0 -157
  23. data/lib/soapy_cake/client/http_client.rb +0 -14
  24. data/spec/fixtures/vcr_cassettes/client_new_account_statuses.yml +0 -1200
  25. data/spec/fixtures/vcr_cassettes/client_new_advertisers.yml +0 -1202
  26. data/spec/fixtures/vcr_cassettes/client_new_affiliate_tags.yml +0 -1200
  27. data/spec/fixtures/vcr_cassettes/client_new_affiliate_tiers.yml +0 -1201
  28. data/spec/fixtures/vcr_cassettes/client_new_billing_cycles.yml +0 -1200
  29. data/spec/fixtures/vcr_cassettes/client_new_cap_intervals.yml +0 -1201
  30. data/spec/fixtures/vcr_cassettes/client_new_cap_types.yml +0 -1199
  31. data/spec/fixtures/vcr_cassettes/client_new_countries.yml +0 -1515
  32. data/spec/fixtures/vcr_cassettes/client_new_currencies.yml +0 -1199
  33. data/spec/fixtures/vcr_cassettes/client_new_empty_response.yml +0 -1200
  34. data/spec/fixtures/vcr_cassettes/client_new_empty_response_offer_summary.yml +0 -865
  35. data/spec/fixtures/vcr_cassettes/client_new_languages.yml +0 -1199
  36. data/spec/fixtures/vcr_cassettes/client_new_media_types.yml +0 -1215
  37. data/spec/fixtures/vcr_cassettes/client_new_offer_statuses.yml +0 -1202
  38. data/spec/fixtures/vcr_cassettes/client_new_offer_types.yml +0 -1201
  39. data/spec/fixtures/vcr_cassettes/client_new_payment_settings.yml +0 -1203
  40. data/spec/fixtures/vcr_cassettes/client_new_payment_types.yml +0 -1204
  41. data/spec/fixtures/vcr_cassettes/client_new_price_formats.yml +0 -1202
  42. data/spec/fixtures/vcr_cassettes/client_new_roles.yml +0 -1203
  43. data/spec/fixtures/vcr_cassettes/client_new_verticals.yml +0 -1197
  44. data/spec/fixtures/vcr_cassettes/client_new_with_username_and_password.yml +0 -1198
  45. data/spec/fixtures/vcr_cassettes/client_sekken_client_caches_results.yml +0 -1261
  46. data/spec/lib/soapy_cake/advertiser_spec.rb +0 -14
  47. data/spec/lib/soapy_cake/client/cake_client_spec.rb +0 -197
@@ -1,50 +1,30 @@
1
- require 'spec_helper'
2
-
3
1
  RSpec.describe SoapyCake::Affiliate do
4
- subject { described_class.new(api_key: 'abc', affiliate_id: 1) }
5
-
6
- let(:client) { double('soap client') }
2
+ let(:affiliate_id) { 42 }
3
+ let(:opts) { { a: 1 } }
4
+ let(:cake_opts) { opts.merge(affiliate_id: affiliate_id) }
7
5
 
8
- describe '#bills' do
9
- it 'returns bills' do
10
- expect(SoapyCake::Client::CakeClient).to receive(:reports)
11
- .with(role: :affiliates)
12
- .and_return(client)
6
+ subject { described_class.new(affiliate_id: affiliate_id) }
13
7
 
14
- expect(client).to receive(:bills).with(affiliate_id: 1, api_key: 'abc')
8
+ shared_examples_for 'a cake affiliate method' do
9
+ it 'runs the request' do
10
+ request = double('request')
11
+ expect(SoapyCake::Request).to receive(:new)
12
+ .with(:affiliate, service, method, cake_opts).and_return(request)
13
+ expect(subject).to receive(:run).with(request)
15
14
 
16
- subject.bills
15
+ subject.public_send(method, opts)
17
16
  end
18
17
  end
19
18
 
20
- describe '#offer_feed' do
21
- let(:offers) { double('offers') }
22
-
23
- it 'returns offers' do
24
- expect(SoapyCake::Client::CakeClient).to receive(:offers)
25
- .with(role: :affiliates)
26
- .and_return(client)
27
-
28
- expect(client).to receive(:offer_feed)
29
- .with(affiliate_id: 1, api_key: 'abc', status_id: 3)
30
- .and_return(offers)
31
-
32
- expect(subject.offer_feed(status_id: 3)).to eq(offers)
33
- end
19
+ describe '#bills' do
20
+ let(:service) { :reports }
21
+ let(:method) { :bills }
22
+ it_behaves_like 'a cake affiliate method'
34
23
  end
35
24
 
36
- describe '#campaign' do
37
- let(:campaign) { double('campaign') }
38
-
39
- it 'returns a campaign' do
40
- expect(SoapyCake::Client::CakeClient).to receive(:offers)
41
- .with(role: :affiliates)
42
- .and_return(client)
43
-
44
- expect(client).to receive(:get_campaign)
45
- .with(affiliate_id: 1, api_key: 'abc', campaign_id: 12)
46
- .and_return(campaign)
47
- expect(subject.campaign(campaign_id: 12)).to eq(campaign)
48
- end
25
+ describe '#offer_feed' do
26
+ let(:service) { :offers }
27
+ let(:method) { :offer_feed }
28
+ it_behaves_like 'a cake affiliate method'
49
29
  end
50
30
  end
@@ -0,0 +1,25 @@
1
+ RSpec.describe 'Integration test' do
2
+ it 'returns an affiliate with correct data types', :vcr do
3
+ result = SoapyCake::Admin.new.affiliates(affiliate_id: 16027)
4
+ expect(result.count).to eq(1)
5
+ expect(result.first).to include(
6
+ affiliate_id: 16027,
7
+ # strings
8
+ affiliate_name: 'Affiliate Test 1',
9
+ # booleans
10
+ hide_offers: false,
11
+ # hashes and id-params
12
+ billing_cycle: { billing_cycle_id: 1, billing_cycle_name: 'Weekly' },
13
+ # dates
14
+ date_created: DateTime.new(2014, 4, 28, 10, 52, 15.537),
15
+ # floats
16
+ minimum_payment_threshold: '0.0000',
17
+ )
18
+ end
19
+
20
+ it 'raises if there is an error', :vcr do
21
+ expect do
22
+ SoapyCake::Admin.new.affiliates(affiliate_id: 'bloops')
23
+ end.to raise_error(SoapyCake::RequestFailed)
24
+ end
25
+ end
@@ -37,8 +37,10 @@ end
37
37
 
38
38
  ENV['CAKE_API_KEY'] = 'cake-api-key' if ENV['CAKE_API_KEY'].blank?
39
39
  ENV['CAKE_DOMAIN'] = 'cake-partner-domain.com' if ENV['CAKE_DOMAIN'].blank?
40
+ ENV['CAKE_TIME_OFFSET'] = '1' if ENV['CAKE_TIME_OFFSET'].blank?
40
41
 
41
42
  VCR.configure do |c|
43
+ c.configure_rspec_metadata!
42
44
  c.cassette_library_dir = 'spec/fixtures/vcr_cassettes'
43
45
  c.hook_into :webmock
44
46
  c.filter_sensitive_data('cake-api-key') { ENV['CAKE_API_KEY'] }
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: soapy_cake
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.4
4
+ version: 1.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - ad2games GmbH
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2015-01-22 00:00:00.000000000 Z
11
+ date: 2015-02-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -25,7 +25,7 @@ dependencies:
25
25
  - !ruby/object:Gem::Version
26
26
  version: '0'
27
27
  - !ruby/object:Gem::Dependency
28
- name: sekken
28
+ name: saxerator
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - ">="
@@ -39,7 +39,7 @@ dependencies:
39
39
  - !ruby/object:Gem::Version
40
40
  version: '0'
41
41
  - !ruby/object:Gem::Dependency
42
- name: local_copy
42
+ name: nokogiri
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - ">="
@@ -167,39 +167,19 @@ files:
167
167
  - api_versions.yml
168
168
  - lib/soapy_cake.rb
169
169
  - lib/soapy_cake/admin.rb
170
- - lib/soapy_cake/advertiser.rb
171
170
  - lib/soapy_cake/affiliate.rb
172
171
  - lib/soapy_cake/client.rb
173
- - lib/soapy_cake/client/cake_client.rb
174
- - lib/soapy_cake/client/http_client.rb
172
+ - lib/soapy_cake/error.rb
173
+ - lib/soapy_cake/helper.rb
174
+ - lib/soapy_cake/request.rb
175
+ - lib/soapy_cake/response.rb
175
176
  - lib/soapy_cake/version.rb
176
177
  - soapy_cake.gemspec
177
- - spec/fixtures/vcr_cassettes/client_new_account_statuses.yml
178
- - spec/fixtures/vcr_cassettes/client_new_advertisers.yml
179
- - spec/fixtures/vcr_cassettes/client_new_affiliate_tags.yml
180
- - spec/fixtures/vcr_cassettes/client_new_affiliate_tiers.yml
181
- - spec/fixtures/vcr_cassettes/client_new_billing_cycles.yml
182
- - spec/fixtures/vcr_cassettes/client_new_cap_intervals.yml
183
- - spec/fixtures/vcr_cassettes/client_new_cap_types.yml
184
- - spec/fixtures/vcr_cassettes/client_new_countries.yml
185
- - spec/fixtures/vcr_cassettes/client_new_currencies.yml
186
- - spec/fixtures/vcr_cassettes/client_new_empty_response.yml
187
- - spec/fixtures/vcr_cassettes/client_new_empty_response_offer_summary.yml
188
- - spec/fixtures/vcr_cassettes/client_new_languages.yml
189
- - spec/fixtures/vcr_cassettes/client_new_media_types.yml
190
- - spec/fixtures/vcr_cassettes/client_new_offer_statuses.yml
191
- - spec/fixtures/vcr_cassettes/client_new_offer_types.yml
192
- - spec/fixtures/vcr_cassettes/client_new_payment_settings.yml
193
- - spec/fixtures/vcr_cassettes/client_new_payment_types.yml
194
- - spec/fixtures/vcr_cassettes/client_new_price_formats.yml
195
- - spec/fixtures/vcr_cassettes/client_new_roles.yml
196
- - spec/fixtures/vcr_cassettes/client_new_verticals.yml
197
- - spec/fixtures/vcr_cassettes/client_new_with_username_and_password.yml
198
- - spec/fixtures/vcr_cassettes/client_sekken_client_caches_results.yml
178
+ - spec/fixtures/vcr_cassettes/Integration_test/raises_if_there_is_an_error.yml
179
+ - spec/fixtures/vcr_cassettes/Integration_test/returns_an_affiliate_with_correct_data_types.yml
199
180
  - spec/lib/soapy_cake/admin_spec.rb
200
- - spec/lib/soapy_cake/advertiser_spec.rb
201
181
  - spec/lib/soapy_cake/affiliate_spec.rb
202
- - spec/lib/soapy_cake/client/cake_client_spec.rb
182
+ - spec/lib/soapy_cake/integration_spec.rb
203
183
  - spec/spec_helper.rb
204
184
  homepage: http://ad2games.com
205
185
  licenses:
@@ -226,30 +206,9 @@ signing_key:
226
206
  specification_version: 4
227
207
  summary: Simple client for the CAKE API
228
208
  test_files:
229
- - spec/fixtures/vcr_cassettes/client_new_account_statuses.yml
230
- - spec/fixtures/vcr_cassettes/client_new_advertisers.yml
231
- - spec/fixtures/vcr_cassettes/client_new_affiliate_tags.yml
232
- - spec/fixtures/vcr_cassettes/client_new_affiliate_tiers.yml
233
- - spec/fixtures/vcr_cassettes/client_new_billing_cycles.yml
234
- - spec/fixtures/vcr_cassettes/client_new_cap_intervals.yml
235
- - spec/fixtures/vcr_cassettes/client_new_cap_types.yml
236
- - spec/fixtures/vcr_cassettes/client_new_countries.yml
237
- - spec/fixtures/vcr_cassettes/client_new_currencies.yml
238
- - spec/fixtures/vcr_cassettes/client_new_empty_response.yml
239
- - spec/fixtures/vcr_cassettes/client_new_empty_response_offer_summary.yml
240
- - spec/fixtures/vcr_cassettes/client_new_languages.yml
241
- - spec/fixtures/vcr_cassettes/client_new_media_types.yml
242
- - spec/fixtures/vcr_cassettes/client_new_offer_statuses.yml
243
- - spec/fixtures/vcr_cassettes/client_new_offer_types.yml
244
- - spec/fixtures/vcr_cassettes/client_new_payment_settings.yml
245
- - spec/fixtures/vcr_cassettes/client_new_payment_types.yml
246
- - spec/fixtures/vcr_cassettes/client_new_price_formats.yml
247
- - spec/fixtures/vcr_cassettes/client_new_roles.yml
248
- - spec/fixtures/vcr_cassettes/client_new_verticals.yml
249
- - spec/fixtures/vcr_cassettes/client_new_with_username_and_password.yml
250
- - spec/fixtures/vcr_cassettes/client_sekken_client_caches_results.yml
209
+ - spec/fixtures/vcr_cassettes/Integration_test/raises_if_there_is_an_error.yml
210
+ - spec/fixtures/vcr_cassettes/Integration_test/returns_an_affiliate_with_correct_data_types.yml
251
211
  - spec/lib/soapy_cake/admin_spec.rb
252
- - spec/lib/soapy_cake/advertiser_spec.rb
253
212
  - spec/lib/soapy_cake/affiliate_spec.rb
254
- - spec/lib/soapy_cake/client/cake_client_spec.rb
213
+ - spec/lib/soapy_cake/integration_spec.rb
255
214
  - spec/spec_helper.rb
@@ -1,21 +0,0 @@
1
- module SoapyCake
2
- class Advertiser
3
- attr_reader :api_key, :advertiser_id
4
-
5
- def initialize(opts = {})
6
- @api_key = opts[:api_key]
7
- @advertiser_id = opts[:advertiser_id]
8
- end
9
-
10
- def bills(opts = {})
11
- cake_client(:reports, :bills, opts)
12
- end
13
-
14
- private
15
-
16
- def cake_client(api, method, opts = {})
17
- Client::CakeClient.send(api, role: :advertisers)
18
- .public_send(method, opts.merge(advertiser_id: advertiser_id, api_key: api_key))
19
- end
20
- end
21
- end
@@ -1,157 +0,0 @@
1
- require 'sekken'
2
- require 'active_support/core_ext/time/zones'
3
- require 'local_copy'
4
-
5
- module SoapyCake
6
- module Client
7
- class CakeClient
8
- attr_reader :service, :api_key, :domain, :role
9
-
10
- def initialize(service, opts = {})
11
- @service = service.to_sym
12
- @version = opts[:version]
13
- @role = opts[:role] || :admin
14
-
15
- @domain = opts.fetch(:domain) do
16
- if ENV['CAKE_DOMAIN'].present?
17
- ENV['CAKE_DOMAIN']
18
- else
19
- fail 'We need a domain'
20
- end
21
- end
22
-
23
- @api_key = opts.fetch(:api_key) do
24
- if opts[:username] && opts[:password]
25
- get_api_key(opts[:username], opts[:password])
26
- elsif ENV['CAKE_API_KEY']
27
- ENV['CAKE_API_KEY']
28
- else
29
- fail 'We need an API key here!'
30
- end
31
- end
32
- end
33
-
34
- def self.method_missing(method, opts = {})
35
- new(method, opts)
36
- end
37
-
38
- def sekken_client(method)
39
- self.class.sekken_client(wsdl_url(version(method)))
40
- end
41
-
42
- def self.sekken_client(url)
43
- path = LocalCopy.fetch(url)
44
- @sekken_clients ||= {}
45
- @sekken_clients[url] ||= Sekken.new(path, HTTPartySekken.new)
46
- end
47
-
48
- def method_missing(method, opts = {})
49
- if supported?(method)
50
- method = method.to_s
51
- operation = sekken_client(method).operation(service, "#{service}Soap12", method.camelize)
52
- operation.body = build_body(method, opts)
53
- process_response(method, operation.call.body)
54
- else
55
- super
56
- end
57
- end
58
-
59
- def known_params_for(method)
60
- method = method.to_s
61
- operation = sekken_client(method).operation(service, "#{service}Soap12", method.camelize)
62
- operation.example_body
63
- end
64
-
65
- private
66
-
67
- def build_body(method, opts)
68
- {
69
- method.camelize.to_sym => { api_key: api_key }.merge(
70
- opts.each_with_object({}) do |(key, value), memo|
71
- memo[key] = format_param(value)
72
- end
73
- )
74
- }
75
- end
76
-
77
- def format_param(value)
78
- case value
79
- when Time
80
- value.utc.strftime('%Y-%m-%dT%H:%M:%S')
81
- when Date
82
- value.strftime('%Y-%m-%dT00:00:00')
83
- else
84
- value
85
- end
86
- end
87
-
88
- def process_response(method, response)
89
- Time.use_zone('UTC') do
90
- fail RequestUnsuccessful, response[:fault][:reason][:text] if response[:fault]
91
- node_name = {
92
- 'affiliate_summary' => 'affiliates',
93
- 'advertiser_summary' => 'advertisers',
94
- 'affiliate_tags' => 'tags',
95
- 'offer_summary' => 'offers',
96
- 'campaign_summary' => 'campaigns',
97
- 'offer_feed' => 'offers',
98
- 'export_affiliate_bills' => 'affiliate_bills',
99
- 'export_advertiser_bills' => 'advertiser_bills',
100
- }.fetch(method, method)
101
-
102
- result = response[:"#{method}_response"][:"#{method}_result"]
103
- fail RequestUnsuccessful, result[:message] if result[:success] == false
104
- return result unless result_has_collection?(result, method)
105
- extract_collection(node_name, result)
106
- .map { |hash| remove_prefix(node_name, hash) }
107
- end
108
- end
109
-
110
- def result_has_collection?(result, method)
111
- !result.key?(:message) && !method.to_s.starts_with?('get_')
112
- end
113
-
114
- def extract_collection(node_name, response)
115
- node_name = node_name.to_sym
116
- if response.key?(node_name)
117
- return [] if response[node_name].nil?
118
- response = response[node_name]
119
- end
120
- [response[response.keys.first]].flatten
121
- end
122
-
123
- def remove_prefix(prefix, object)
124
- object.each_with_object({}) do |(k, v), m|
125
- prefix_ = "#{prefix.singularize}_"
126
- if k.to_s.start_with?(prefix_)
127
- m[k[(prefix_.size)..-1].to_sym] = v
128
- else
129
- m[k] = v
130
- end
131
- end
132
- end
133
-
134
- def get_api_key(username, password)
135
- operation = sekken_client(:get_api_key).operation('get', 'getSoap12', 'GetAPIKey')
136
- operation.body = { GetAPIKey: { username: username, password: password } }
137
- response = operation.call.body
138
- response[:get_api_key_response][:get_api_key_result]
139
- end
140
-
141
- def wsdl_url(version)
142
- role_path = (role && role != :admin) ? "/#{role}" : nil
143
- "https://#{domain}#{role_path}/api/#{version}/#{service}.asmx?WSDL"
144
- end
145
-
146
- def version(method)
147
- API_VERSIONS[role][service][method.to_sym]
148
- end
149
-
150
- def supported?(method)
151
- API_VERSIONS[role][service].keys.include?(method)
152
- end
153
-
154
- class RequestUnsuccessful < RuntimeError; end
155
- end
156
- end
157
- end
@@ -1,14 +0,0 @@
1
- require 'httparty'
2
-
3
- class HTTPartySekken
4
- include HTTParty
5
- read_timeout 3 * 60
6
-
7
- def get(url)
8
- self.class.get(url).body
9
- end
10
-
11
- def post(url, headers, body)
12
- self.class.post(url, headers: headers, body: body).body
13
- end
14
- end
@@ -1,1200 +0,0 @@
1
- ---
2
- http_interactions:
3
- - request:
4
- method: get
5
- uri: https://cake-partner-domain.com/api/1/get.asmx?WSDL
6
- body:
7
- encoding: UTF-8
8
- string: ''
9
- headers:
10
- User-Agent:
11
- - HTTPClient/1.0 (2.3.4.1, ruby 2.1.1 (2014-02-24))
12
- Accept:
13
- - "*/*"
14
- Date:
15
- - Wed, 02 Apr 2014 14:54:51 GMT
16
- response:
17
- status:
18
- code: 200
19
- message: OK
20
- headers:
21
- Cache-Control:
22
- - private, max-age=0
23
- Content-Type:
24
- - text/xml; charset=utf-8
25
- Server:
26
- - Microsoft-IIS/7.5
27
- X-Aspnet-Version:
28
- - 4.0.30319
29
- X-Powered-By:
30
- - ASP.NET
31
- Date:
32
- - Wed, 02 Apr 2014 14:54:51 GMT
33
- Content-Length:
34
- - '87385'
35
- body:
36
- encoding: UTF-8
37
- string: "<?xml version=\"1.0\" encoding=\"utf-8\"?>\r\n<wsdl:definitions xmlns:soap=\"http://schemas.xmlsoap.org/wsdl/soap/\"
38
- xmlns:tm=\"http://microsoft.com/wsdl/mime/textMatching/\" xmlns:soapenc=\"http://schemas.xmlsoap.org/soap/encoding/\"
39
- xmlns:mime=\"http://schemas.xmlsoap.org/wsdl/mime/\" xmlns:tns=\"http://cakemarketing.com/api/1/\"
40
- xmlns:s1=\"API:id_name_store\" xmlns:s=\"http://www.w3.org/2001/XMLSchema\"
41
- xmlns:soap12=\"http://schemas.xmlsoap.org/wsdl/soap12/\" xmlns:http=\"http://schemas.xmlsoap.org/wsdl/http/\"
42
- targetNamespace=\"http://cakemarketing.com/api/1/\" xmlns:wsdl=\"http://schemas.xmlsoap.org/wsdl/\">\r\n
43
- \ <wsdl:types>\r\n <s:schema elementFormDefault=\"qualified\" targetNamespace=\"http://cakemarketing.com/api/1/\">\r\n
44
- \ <s:import namespace=\"API:id_name_store\" />\r\n <s:element name=\"Advertisers\">\r\n
45
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
46
- minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\" />\r\n
47
- \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
48
- \ <s:element name=\"AdvertisersResponse\">\r\n <s:complexType>\r\n
49
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
50
- name=\"AdvertisersResult\" type=\"tns:ArrayOfAdvertiser\" />\r\n </s:sequence>\r\n
51
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"ArrayOfAdvertiser\">\r\n
52
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
53
- name=\"Advertiser\" nillable=\"true\" type=\"tns:Advertiser\" />\r\n </s:sequence>\r\n
54
- \ </s:complexType>\r\n <s:complexType name=\"Advertiser\">\r\n <s:sequence>\r\n
55
- \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"advertiser_id\"
56
- type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
57
- name=\"advertiser_name\" type=\"s:string\" />\r\n </s:sequence>\r\n
58
- \ </s:complexType>\r\n <s:element name=\"Verticals\">\r\n <s:complexType>\r\n
59
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
60
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
61
- \ </s:element>\r\n <s:element name=\"VerticalsResponse\">\r\n <s:complexType>\r\n
62
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
63
- name=\"VerticalsResult\" type=\"tns:ArrayOfVertical\" />\r\n </s:sequence>\r\n
64
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"ArrayOfVertical\">\r\n
65
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
66
- name=\"Vertical\" nillable=\"true\" type=\"tns:Vertical\" />\r\n </s:sequence>\r\n
67
- \ </s:complexType>\r\n <s:complexType name=\"Vertical\">\r\n <s:sequence>\r\n
68
- \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"vertical_id\"
69
- type=\"s:int\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
70
- name=\"vertical_name\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
71
- \ <s:element name=\"GetAPIKey\">\r\n <s:complexType>\r\n <s:sequence>\r\n
72
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"username\" type=\"s:string\"
73
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"password\"
74
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
75
- \ </s:element>\r\n <s:element name=\"GetAPIKeyResponse\">\r\n <s:complexType>\r\n
76
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
77
- name=\"GetAPIKeyResult\" type=\"s:string\" />\r\n </s:sequence>\r\n
78
- \ </s:complexType>\r\n </s:element>\r\n <s:element name=\"Currencies\">\r\n
79
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
80
- minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\" />\r\n
81
- \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
82
- \ <s:element name=\"CurrenciesResponse\">\r\n <s:complexType>\r\n
83
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
84
- name=\"CurrenciesResult\" type=\"tns:currencies_response\" />\r\n </s:sequence>\r\n
85
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"currencies_response\">\r\n
86
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
87
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
88
- name=\"currencies\" type=\"tns:ArrayOfCurrency\" />\r\n </s:sequence>\r\n
89
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
90
- \ <s:complexType name=\"get_response\">\r\n <s:complexContent mixed=\"false\">\r\n
91
- \ <s:extension base=\"tns:base_response\">\r\n <s:sequence>\r\n
92
- \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"row_count\"
93
- type=\"s:int\" />\r\n </s:sequence>\r\n </s:extension>\r\n
94
- \ </s:complexContent>\r\n </s:complexType>\r\n <s:complexType
95
- name=\"base_response\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
96
- maxOccurs=\"1\" name=\"success\" type=\"s:boolean\" />\r\n <s:element
97
- minOccurs=\"0\" maxOccurs=\"1\" name=\"message\" type=\"s:string\" />\r\n
98
- \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"ArrayOfCurrency\">\r\n
99
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"unbounded\"
100
- name=\"currency\" nillable=\"true\" type=\"s1:currency\" />\r\n </s:sequence>\r\n
101
- \ </s:complexType>\r\n <s:element name=\"AffiliateTiers\">\r\n <s:complexType>\r\n
102
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
103
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
104
- \ </s:element>\r\n <s:element name=\"AffiliateTiersResponse\">\r\n
105
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
106
- minOccurs=\"0\" maxOccurs=\"1\" name=\"AffiliateTiersResult\" type=\"tns:affiliate_tiers_response\"
107
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
108
- \ <s:complexType name=\"affiliate_tiers_response\">\r\n <s:complexContent
109
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
110
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
111
- name=\"affiliate_tiers\" type=\"tns:ArrayOfAffiliate_tier\" />\r\n </s:sequence>\r\n
112
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
113
- \ <s:complexType name=\"ArrayOfAffiliate_tier\">\r\n <s:sequence>\r\n
114
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"affiliate_tier\"
115
- nillable=\"true\" type=\"s1:affiliate_tier\" />\r\n </s:sequence>\r\n
116
- \ </s:complexType>\r\n <s:element name=\"PaymentSettings\">\r\n <s:complexType>\r\n
117
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
118
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
119
- \ </s:element>\r\n <s:element name=\"PaymentSettingsResponse\">\r\n
120
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
121
- minOccurs=\"0\" maxOccurs=\"1\" name=\"PaymentSettingsResult\" type=\"tns:payment_settings_response\"
122
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
123
- \ <s:complexType name=\"payment_settings_response\">\r\n <s:complexContent
124
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
125
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
126
- name=\"payment_settings\" type=\"tns:ArrayOfPayment_setting\" />\r\n </s:sequence>\r\n
127
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
128
- \ <s:complexType name=\"ArrayOfPayment_setting\">\r\n <s:sequence>\r\n
129
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"payment_setting\"
130
- nillable=\"true\" type=\"s1:payment_setting\" />\r\n </s:sequence>\r\n
131
- \ </s:complexType>\r\n <s:element name=\"BillingCycles\">\r\n <s:complexType>\r\n
132
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
133
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
134
- \ </s:element>\r\n <s:element name=\"BillingCyclesResponse\">\r\n
135
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
136
- minOccurs=\"0\" maxOccurs=\"1\" name=\"BillingCyclesResult\" type=\"tns:billing_cycles_response\"
137
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
138
- \ <s:complexType name=\"billing_cycles_response\">\r\n <s:complexContent
139
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
140
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
141
- name=\"billing_cycles\" type=\"tns:ArrayOfBilling_cycle\" />\r\n </s:sequence>\r\n
142
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
143
- \ <s:complexType name=\"ArrayOfBilling_cycle\">\r\n <s:sequence>\r\n
144
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"billing_cycle\"
145
- nillable=\"true\" type=\"s1:billing_cycle\" />\r\n </s:sequence>\r\n
146
- \ </s:complexType>\r\n <s:element name=\"PaymentTypes\">\r\n <s:complexType>\r\n
147
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
148
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
149
- \ </s:element>\r\n <s:element name=\"PaymentTypesResponse\">\r\n
150
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
151
- minOccurs=\"0\" maxOccurs=\"1\" name=\"PaymentTypesResult\" type=\"tns:payment_types_response\"
152
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
153
- \ <s:complexType name=\"payment_types_response\">\r\n <s:complexContent
154
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
155
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
156
- name=\"payment_types\" type=\"tns:ArrayOfPayment_type\" />\r\n </s:sequence>\r\n
157
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
158
- \ <s:complexType name=\"ArrayOfPayment_type\">\r\n <s:sequence>\r\n
159
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"payment_type\"
160
- nillable=\"true\" type=\"s1:payment_type\" />\r\n </s:sequence>\r\n
161
- \ </s:complexType>\r\n <s:element name=\"Languages\">\r\n <s:complexType>\r\n
162
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
163
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
164
- \ </s:element>\r\n <s:element name=\"LanguagesResponse\">\r\n <s:complexType>\r\n
165
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
166
- name=\"LanguagesResult\" type=\"tns:languages_response\" />\r\n </s:sequence>\r\n
167
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"languages_response\">\r\n
168
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
169
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
170
- name=\"languages\" type=\"tns:ArrayOfLanguage\" />\r\n </s:sequence>\r\n
171
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
172
- \ <s:complexType name=\"ArrayOfLanguage\">\r\n <s:sequence>\r\n
173
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"language\"
174
- nillable=\"true\" type=\"s1:language\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
175
- \ <s:element name=\"AffiliateTags\">\r\n <s:complexType>\r\n <s:sequence>\r\n
176
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
177
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
178
- \ <s:element name=\"AffiliateTagsResponse\">\r\n <s:complexType>\r\n
179
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
180
- name=\"AffiliateTagsResult\" type=\"tns:affiliate_tags_response\" />\r\n </s:sequence>\r\n
181
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"affiliate_tags_response\">\r\n
182
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
183
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
184
- name=\"tags\" type=\"tns:ArrayOfTag\" />\r\n </s:sequence>\r\n
185
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
186
- \ <s:complexType name=\"ArrayOfTag\">\r\n <s:sequence>\r\n <s:element
187
- minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"tag\" nillable=\"true\" type=\"s1:tag\"
188
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
189
- name=\"ExchangeRates\">\r\n <s:complexType>\r\n <s:sequence>\r\n
190
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
191
- />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"start_date\"
192
- type=\"s:dateTime\" />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
193
- name=\"end_date\" type=\"s:dateTime\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
194
- \ </s:element>\r\n <s:element name=\"ExchangeRatesResponse\">\r\n
195
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
196
- minOccurs=\"0\" maxOccurs=\"1\" name=\"ExchangeRatesResult\" type=\"tns:exchange_rates_response\"
197
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
198
- \ <s:complexType name=\"exchange_rates_response\">\r\n <s:complexContent
199
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
200
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
201
- name=\"exchange_rates\" type=\"tns:ArrayOfExchange_rate\" />\r\n </s:sequence>\r\n
202
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
203
- \ <s:complexType name=\"ArrayOfExchange_rate\">\r\n <s:sequence>\r\n
204
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"exchange_rate\"
205
- nillable=\"true\" type=\"tns:exchange_rate\" />\r\n </s:sequence>\r\n
206
- \ </s:complexType>\r\n <s:complexType name=\"exchange_rate\">\r\n
207
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
208
- name=\"base_currency\" type=\"s1:currency\" />\r\n <s:element minOccurs=\"0\"
209
- maxOccurs=\"1\" name=\"quote_currency\" type=\"s1:currency\" />\r\n <s:element
210
- minOccurs=\"1\" maxOccurs=\"1\" name=\"start_date\" type=\"s:dateTime\" />\r\n
211
- \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"end_date\" type=\"s:dateTime\"
212
- />\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"rate\" type=\"s:decimal\"
213
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:element
214
- name=\"AccountStatuses\">\r\n <s:complexType>\r\n <s:sequence>\r\n
215
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
216
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
217
- \ <s:element name=\"AccountStatusesResponse\">\r\n <s:complexType>\r\n
218
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
219
- name=\"AccountStatusesResult\" type=\"tns:account_statuses_response\" />\r\n
220
- \ </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
221
- \ <s:complexType name=\"account_statuses_response\">\r\n <s:complexContent
222
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
223
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
224
- name=\"account_statuses\" type=\"tns:ArrayOfAccount_status\" />\r\n </s:sequence>\r\n
225
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
226
- \ <s:complexType name=\"ArrayOfAccount_status\">\r\n <s:sequence>\r\n
227
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"account_status\"
228
- nillable=\"true\" type=\"s1:account_status\" />\r\n </s:sequence>\r\n
229
- \ </s:complexType>\r\n <s:element name=\"OfferStatuses\">\r\n <s:complexType>\r\n
230
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
231
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
232
- \ </s:element>\r\n <s:element name=\"OfferStatusesResponse\">\r\n
233
- \ <s:complexType>\r\n <s:sequence>\r\n <s:element
234
- minOccurs=\"0\" maxOccurs=\"1\" name=\"OfferStatusesResult\" type=\"tns:offer_statuses_response\"
235
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
236
- \ <s:complexType name=\"offer_statuses_response\">\r\n <s:complexContent
237
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
238
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
239
- name=\"offer_statuses\" type=\"tns:ArrayOfOffer_status\" />\r\n </s:sequence>\r\n
240
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
241
- \ <s:complexType name=\"ArrayOfOffer_status\">\r\n <s:sequence>\r\n
242
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"offer_status\"
243
- nillable=\"true\" type=\"s1:offer_status\" />\r\n </s:sequence>\r\n
244
- \ </s:complexType>\r\n <s:element name=\"OfferTypes\">\r\n <s:complexType>\r\n
245
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
246
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
247
- \ </s:element>\r\n <s:element name=\"OfferTypesResponse\">\r\n <s:complexType>\r\n
248
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
249
- name=\"OfferTypesResult\" type=\"tns:offer_types_response\" />\r\n </s:sequence>\r\n
250
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"offer_types_response\">\r\n
251
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
252
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
253
- name=\"offer_types\" type=\"tns:ArrayOfOffer_type\" />\r\n </s:sequence>\r\n
254
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
255
- \ <s:complexType name=\"ArrayOfOffer_type\">\r\n <s:sequence>\r\n
256
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"offer_type\"
257
- nillable=\"true\" type=\"s1:offer_type\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
258
- \ <s:element name=\"PriceFormats\">\r\n <s:complexType>\r\n <s:sequence>\r\n
259
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
260
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
261
- \ <s:element name=\"PriceFormatsResponse\">\r\n <s:complexType>\r\n
262
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
263
- name=\"PriceFormatsResult\" type=\"tns:price_formats_response\" />\r\n </s:sequence>\r\n
264
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"price_formats_response\">\r\n
265
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
266
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
267
- name=\"price_formats\" type=\"tns:ArrayOfPrice_format\" />\r\n </s:sequence>\r\n
268
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
269
- \ <s:complexType name=\"ArrayOfPrice_format\">\r\n <s:sequence>\r\n
270
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"price_format\"
271
- nillable=\"true\" type=\"s1:price_format\" />\r\n </s:sequence>\r\n
272
- \ </s:complexType>\r\n <s:element name=\"CapTypes\">\r\n <s:complexType>\r\n
273
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
274
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
275
- \ </s:element>\r\n <s:element name=\"CapTypesResponse\">\r\n <s:complexType>\r\n
276
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
277
- name=\"CapTypesResult\" type=\"tns:cap_types_response\" />\r\n </s:sequence>\r\n
278
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"cap_types_response\">\r\n
279
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
280
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
281
- name=\"cap_types\" type=\"tns:ArrayOfCap_type\" />\r\n </s:sequence>\r\n
282
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
283
- \ <s:complexType name=\"ArrayOfCap_type\">\r\n <s:sequence>\r\n
284
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"cap_type\"
285
- nillable=\"true\" type=\"s1:cap_type\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
286
- \ <s:element name=\"CapIntervals\">\r\n <s:complexType>\r\n <s:sequence>\r\n
287
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
288
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
289
- \ <s:element name=\"CapIntervalsResponse\">\r\n <s:complexType>\r\n
290
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
291
- name=\"CapIntervalsResult\" type=\"tns:cap_intervals_response\" />\r\n </s:sequence>\r\n
292
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"cap_intervals_response\">\r\n
293
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
294
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
295
- name=\"cap_intervals\" type=\"tns:ArrayOfCap_interval\" />\r\n </s:sequence>\r\n
296
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
297
- \ <s:complexType name=\"ArrayOfCap_interval\">\r\n <s:sequence>\r\n
298
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"cap_interval\"
299
- nillable=\"true\" type=\"s1:cap_interval\" />\r\n </s:sequence>\r\n
300
- \ </s:complexType>\r\n <s:element name=\"MediaTypes\">\r\n <s:complexType>\r\n
301
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
302
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
303
- \ </s:element>\r\n <s:element name=\"MediaTypesResponse\">\r\n <s:complexType>\r\n
304
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
305
- name=\"MediaTypesResult\" type=\"tns:media_types_response\" />\r\n </s:sequence>\r\n
306
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"media_types_response\">\r\n
307
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
308
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
309
- name=\"media_types\" type=\"tns:ArrayOfMedia_type\" />\r\n </s:sequence>\r\n
310
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
311
- \ <s:complexType name=\"ArrayOfMedia_type\">\r\n <s:sequence>\r\n
312
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"media_type\"
313
- nillable=\"true\" type=\"s1:media_type\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
314
- \ <s:element name=\"Roles\">\r\n <s:complexType>\r\n <s:sequence>\r\n
315
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
316
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
317
- \ <s:element name=\"RolesResponse\">\r\n <s:complexType>\r\n <s:sequence>\r\n
318
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"RolesResult\"
319
- type=\"tns:roles_response\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
320
- \ </s:element>\r\n <s:complexType name=\"roles_response\">\r\n <s:complexContent
321
- mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
322
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
323
- name=\"roles\" type=\"tns:ArrayOfRole\" />\r\n </s:sequence>\r\n
324
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
325
- \ <s:complexType name=\"ArrayOfRole\">\r\n <s:sequence>\r\n <s:element
326
- minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"role\" nillable=\"true\" type=\"tns:role\"
327
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
328
- name=\"role\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
329
- maxOccurs=\"1\" name=\"role_id\" type=\"s:int\" />\r\n <s:element
330
- minOccurs=\"0\" maxOccurs=\"1\" name=\"role_name\" type=\"s:string\" />\r\n
331
- \ <s:element minOccurs=\"1\" maxOccurs=\"1\" name=\"entity_type_id\"
332
- nillable=\"true\" type=\"s:unsignedByte\" />\r\n <s:element minOccurs=\"0\"
333
- maxOccurs=\"1\" name=\"entity_type_name\" type=\"s:string\" />\r\n </s:sequence>\r\n
334
- \ </s:complexType>\r\n <s:element name=\"Departments\">\r\n <s:complexType>\r\n
335
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
336
- name=\"api_key\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
337
- \ </s:element>\r\n <s:element name=\"DepartmentsResponse\">\r\n <s:complexType>\r\n
338
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
339
- name=\"DepartmentsResult\" type=\"tns:departments_response\" />\r\n </s:sequence>\r\n
340
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"departments_response\">\r\n
341
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
342
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
343
- name=\"departments\" type=\"tns:ArrayOfDepartment\" />\r\n </s:sequence>\r\n
344
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
345
- \ <s:complexType name=\"ArrayOfDepartment\">\r\n <s:sequence>\r\n
346
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"department\"
347
- nillable=\"true\" type=\"s1:department\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
348
- \ <s:element name=\"Countries\">\r\n <s:complexType>\r\n <s:sequence>\r\n
349
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"api_key\" type=\"s:string\"
350
- />\r\n </s:sequence>\r\n </s:complexType>\r\n </s:element>\r\n
351
- \ <s:element name=\"CountriesResponse\">\r\n <s:complexType>\r\n
352
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
353
- name=\"CountriesResult\" type=\"tns:countries_response\" />\r\n </s:sequence>\r\n
354
- \ </s:complexType>\r\n </s:element>\r\n <s:complexType name=\"countries_response\">\r\n
355
- \ <s:complexContent mixed=\"false\">\r\n <s:extension base=\"tns:get_response\">\r\n
356
- \ <s:sequence>\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
357
- name=\"countries\" type=\"tns:ArrayOfCountry\" />\r\n </s:sequence>\r\n
358
- \ </s:extension>\r\n </s:complexContent>\r\n </s:complexType>\r\n
359
- \ <s:complexType name=\"ArrayOfCountry\">\r\n <s:sequence>\r\n
360
- \ <s:element minOccurs=\"0\" maxOccurs=\"unbounded\" name=\"country\"
361
- nillable=\"true\" type=\"s1:country\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
362
- \ <s:element name=\"ArrayOfAdvertiser\" nillable=\"true\" type=\"tns:ArrayOfAdvertiser\"
363
- />\r\n <s:element name=\"ArrayOfVertical\" nillable=\"true\" type=\"tns:ArrayOfVertical\"
364
- />\r\n <s:element name=\"string\" nillable=\"true\" type=\"s:string\"
365
- />\r\n <s:element name=\"currencies_response\" nillable=\"true\" type=\"tns:currencies_response\"
366
- />\r\n <s:element name=\"affiliate_tiers_response\" nillable=\"true\"
367
- type=\"tns:affiliate_tiers_response\" />\r\n <s:element name=\"payment_settings_response\"
368
- nillable=\"true\" type=\"tns:payment_settings_response\" />\r\n <s:element
369
- name=\"billing_cycles_response\" nillable=\"true\" type=\"tns:billing_cycles_response\"
370
- />\r\n <s:element name=\"payment_types_response\" nillable=\"true\" type=\"tns:payment_types_response\"
371
- />\r\n <s:element name=\"languages_response\" nillable=\"true\" type=\"tns:languages_response\"
372
- />\r\n <s:element name=\"affiliate_tags_response\" nillable=\"true\"
373
- type=\"tns:affiliate_tags_response\" />\r\n <s:element name=\"exchange_rates_response\"
374
- nillable=\"true\" type=\"tns:exchange_rates_response\" />\r\n <s:element
375
- name=\"account_statuses_response\" nillable=\"true\" type=\"tns:account_statuses_response\"
376
- />\r\n <s:element name=\"offer_statuses_response\" nillable=\"true\"
377
- type=\"tns:offer_statuses_response\" />\r\n <s:element name=\"offer_types_response\"
378
- nillable=\"true\" type=\"tns:offer_types_response\" />\r\n <s:element
379
- name=\"price_formats_response\" nillable=\"true\" type=\"tns:price_formats_response\"
380
- />\r\n <s:element name=\"cap_types_response\" nillable=\"true\" type=\"tns:cap_types_response\"
381
- />\r\n <s:element name=\"cap_intervals_response\" nillable=\"true\" type=\"tns:cap_intervals_response\"
382
- />\r\n <s:element name=\"media_types_response\" nillable=\"true\" type=\"tns:media_types_response\"
383
- />\r\n <s:element name=\"roles_response\" nillable=\"true\" type=\"tns:roles_response\"
384
- />\r\n <s:element name=\"departments_response\" nillable=\"true\" type=\"tns:departments_response\"
385
- />\r\n <s:element name=\"countries_response\" nillable=\"true\" type=\"tns:countries_response\"
386
- />\r\n </s:schema>\r\n <s:schema elementFormDefault=\"qualified\" targetNamespace=\"API:id_name_store\">\r\n
387
- \ <s:complexType name=\"currency\">\r\n <s:sequence>\r\n <s:element
388
- minOccurs=\"1\" maxOccurs=\"1\" name=\"currency_id\" type=\"s:unsignedByte\"
389
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"currency_symbol\"
390
- type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
391
- name=\"currency_name\" type=\"s:string\" />\r\n <s:element minOccurs=\"0\"
392
- maxOccurs=\"1\" name=\"currency_abbr\" type=\"s:string\" />\r\n </s:sequence>\r\n
393
- \ </s:complexType>\r\n <s:complexType name=\"affiliate_tier\">\r\n
394
- \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
395
- name=\"affiliate_tier_id\" type=\"s:unsignedByte\" />\r\n <s:element
396
- minOccurs=\"0\" maxOccurs=\"1\" name=\"affiliate_tier_name\" type=\"s:string\"
397
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
398
- name=\"payment_setting\">\r\n <s:sequence>\r\n <s:element
399
- minOccurs=\"1\" maxOccurs=\"1\" name=\"payment_setting_id\" type=\"s:unsignedByte\"
400
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"payment_setting_name\"
401
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
402
- \ <s:complexType name=\"billing_cycle\">\r\n <s:sequence>\r\n <s:element
403
- minOccurs=\"1\" maxOccurs=\"1\" name=\"billing_cycle_id\" type=\"s:unsignedByte\"
404
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"billing_cycle_name\"
405
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
406
- \ <s:complexType name=\"payment_type\">\r\n <s:sequence>\r\n <s:element
407
- minOccurs=\"1\" maxOccurs=\"1\" name=\"payment_type_id\" type=\"s:unsignedByte\"
408
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"payment_type_name\"
409
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
410
- \ <s:complexType name=\"language\">\r\n <s:sequence>\r\n <s:element
411
- minOccurs=\"1\" maxOccurs=\"1\" name=\"language_id\" type=\"s:unsignedByte\"
412
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"language_name\"
413
- type=\"s:string\" />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\"
414
- name=\"language_abbr\" type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
415
- \ <s:complexType name=\"tag\">\r\n <s:sequence>\r\n <s:element
416
- minOccurs=\"1\" maxOccurs=\"1\" name=\"tag_id\" type=\"s:short\" />\r\n <s:element
417
- minOccurs=\"0\" maxOccurs=\"1\" name=\"tag_name\" type=\"s:string\" />\r\n
418
- \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"account_status\">\r\n
419
- \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
420
- name=\"account_status_id\" type=\"s:unsignedByte\" />\r\n <s:element
421
- minOccurs=\"0\" maxOccurs=\"1\" name=\"account_status_name\" type=\"s:string\"
422
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
423
- name=\"offer_status\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
424
- maxOccurs=\"1\" name=\"offer_status_id\" type=\"s:unsignedByte\" />\r\n <s:element
425
- minOccurs=\"0\" maxOccurs=\"1\" name=\"offer_status_name\" type=\"s:string\"
426
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
427
- name=\"offer_type\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
428
- maxOccurs=\"1\" name=\"offer_type_id\" type=\"s:unsignedByte\" />\r\n <s:element
429
- minOccurs=\"0\" maxOccurs=\"1\" name=\"offer_type_name\" type=\"s:string\"
430
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
431
- name=\"price_format\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
432
- maxOccurs=\"1\" name=\"price_format_id\" type=\"s:unsignedByte\" />\r\n <s:element
433
- minOccurs=\"0\" maxOccurs=\"1\" name=\"price_format_name\" type=\"s:string\"
434
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
435
- name=\"cap_type\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
436
- maxOccurs=\"1\" name=\"cap_type_id\" type=\"s:unsignedByte\" />\r\n <s:element
437
- minOccurs=\"0\" maxOccurs=\"1\" name=\"cap_type_name\" type=\"s:string\" />\r\n
438
- \ </s:sequence>\r\n </s:complexType>\r\n <s:complexType name=\"cap_interval\">\r\n
439
- \ <s:sequence>\r\n <s:element minOccurs=\"1\" maxOccurs=\"1\"
440
- name=\"cap_interval_id\" type=\"s:unsignedByte\" />\r\n <s:element
441
- minOccurs=\"0\" maxOccurs=\"1\" name=\"cap_interval_name\" type=\"s:string\"
442
- />\r\n </s:sequence>\r\n </s:complexType>\r\n <s:complexType
443
- name=\"media_type\">\r\n <s:sequence>\r\n <s:element minOccurs=\"1\"
444
- maxOccurs=\"1\" name=\"media_type_id\" nillable=\"true\" type=\"s:unsignedByte\"
445
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"media_type_name\"
446
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
447
- \ <s:complexType name=\"department\">\r\n <s:sequence>\r\n <s:element
448
- minOccurs=\"1\" maxOccurs=\"1\" name=\"department_id\" nillable=\"true\" type=\"s:unsignedByte\"
449
- />\r\n <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"department_name\"
450
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
451
- \ <s:complexType name=\"country\">\r\n <s:sequence>\r\n <s:element
452
- minOccurs=\"0\" maxOccurs=\"1\" name=\"country_code\" type=\"s:string\" />\r\n
453
- \ <s:element minOccurs=\"0\" maxOccurs=\"1\" name=\"country_name\"
454
- type=\"s:string\" />\r\n </s:sequence>\r\n </s:complexType>\r\n
455
- \ </s:schema>\r\n </wsdl:types>\r\n <wsdl:message name=\"AdvertisersSoapIn\">\r\n
456
- \ <wsdl:part name=\"parameters\" element=\"tns:Advertisers\" />\r\n </wsdl:message>\r\n
457
- \ <wsdl:message name=\"AdvertisersSoapOut\">\r\n <wsdl:part name=\"parameters\"
458
- element=\"tns:AdvertisersResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
459
- name=\"VerticalsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:Verticals\"
460
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"VerticalsSoapOut\">\r\n
461
- \ <wsdl:part name=\"parameters\" element=\"tns:VerticalsResponse\" />\r\n
462
- \ </wsdl:message>\r\n <wsdl:message name=\"GetAPIKeySoapIn\">\r\n <wsdl:part
463
- name=\"parameters\" element=\"tns:GetAPIKey\" />\r\n </wsdl:message>\r\n
464
- \ <wsdl:message name=\"GetAPIKeySoapOut\">\r\n <wsdl:part name=\"parameters\"
465
- element=\"tns:GetAPIKeyResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
466
- name=\"CurrenciesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:Currencies\"
467
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CurrenciesSoapOut\">\r\n
468
- \ <wsdl:part name=\"parameters\" element=\"tns:CurrenciesResponse\" />\r\n
469
- \ </wsdl:message>\r\n <wsdl:message name=\"AffiliateTiersSoapIn\">\r\n <wsdl:part
470
- name=\"parameters\" element=\"tns:AffiliateTiers\" />\r\n </wsdl:message>\r\n
471
- \ <wsdl:message name=\"AffiliateTiersSoapOut\">\r\n <wsdl:part name=\"parameters\"
472
- element=\"tns:AffiliateTiersResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
473
- name=\"PaymentSettingsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:PaymentSettings\"
474
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"PaymentSettingsSoapOut\">\r\n
475
- \ <wsdl:part name=\"parameters\" element=\"tns:PaymentSettingsResponse\"
476
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"BillingCyclesSoapIn\">\r\n
477
- \ <wsdl:part name=\"parameters\" element=\"tns:BillingCycles\" />\r\n </wsdl:message>\r\n
478
- \ <wsdl:message name=\"BillingCyclesSoapOut\">\r\n <wsdl:part name=\"parameters\"
479
- element=\"tns:BillingCyclesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
480
- name=\"PaymentTypesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:PaymentTypes\"
481
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"PaymentTypesSoapOut\">\r\n
482
- \ <wsdl:part name=\"parameters\" element=\"tns:PaymentTypesResponse\" />\r\n
483
- \ </wsdl:message>\r\n <wsdl:message name=\"LanguagesSoapIn\">\r\n <wsdl:part
484
- name=\"parameters\" element=\"tns:Languages\" />\r\n </wsdl:message>\r\n
485
- \ <wsdl:message name=\"LanguagesSoapOut\">\r\n <wsdl:part name=\"parameters\"
486
- element=\"tns:LanguagesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
487
- name=\"AffiliateTagsSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:AffiliateTags\"
488
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"AffiliateTagsSoapOut\">\r\n
489
- \ <wsdl:part name=\"parameters\" element=\"tns:AffiliateTagsResponse\" />\r\n
490
- \ </wsdl:message>\r\n <wsdl:message name=\"ExchangeRatesSoapIn\">\r\n <wsdl:part
491
- name=\"parameters\" element=\"tns:ExchangeRates\" />\r\n </wsdl:message>\r\n
492
- \ <wsdl:message name=\"ExchangeRatesSoapOut\">\r\n <wsdl:part name=\"parameters\"
493
- element=\"tns:ExchangeRatesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
494
- name=\"AccountStatusesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:AccountStatuses\"
495
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"AccountStatusesSoapOut\">\r\n
496
- \ <wsdl:part name=\"parameters\" element=\"tns:AccountStatusesResponse\"
497
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"OfferStatusesSoapIn\">\r\n
498
- \ <wsdl:part name=\"parameters\" element=\"tns:OfferStatuses\" />\r\n </wsdl:message>\r\n
499
- \ <wsdl:message name=\"OfferStatusesSoapOut\">\r\n <wsdl:part name=\"parameters\"
500
- element=\"tns:OfferStatusesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
501
- name=\"OfferTypesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:OfferTypes\"
502
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"OfferTypesSoapOut\">\r\n
503
- \ <wsdl:part name=\"parameters\" element=\"tns:OfferTypesResponse\" />\r\n
504
- \ </wsdl:message>\r\n <wsdl:message name=\"PriceFormatsSoapIn\">\r\n <wsdl:part
505
- name=\"parameters\" element=\"tns:PriceFormats\" />\r\n </wsdl:message>\r\n
506
- \ <wsdl:message name=\"PriceFormatsSoapOut\">\r\n <wsdl:part name=\"parameters\"
507
- element=\"tns:PriceFormatsResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
508
- name=\"CapTypesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:CapTypes\"
509
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapTypesSoapOut\">\r\n <wsdl:part
510
- name=\"parameters\" element=\"tns:CapTypesResponse\" />\r\n </wsdl:message>\r\n
511
- \ <wsdl:message name=\"CapIntervalsSoapIn\">\r\n <wsdl:part name=\"parameters\"
512
- element=\"tns:CapIntervals\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapIntervalsSoapOut\">\r\n
513
- \ <wsdl:part name=\"parameters\" element=\"tns:CapIntervalsResponse\" />\r\n
514
- \ </wsdl:message>\r\n <wsdl:message name=\"MediaTypesSoapIn\">\r\n <wsdl:part
515
- name=\"parameters\" element=\"tns:MediaTypes\" />\r\n </wsdl:message>\r\n
516
- \ <wsdl:message name=\"MediaTypesSoapOut\">\r\n <wsdl:part name=\"parameters\"
517
- element=\"tns:MediaTypesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
518
- name=\"RolesSoapIn\">\r\n <wsdl:part name=\"parameters\" element=\"tns:Roles\"
519
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"RolesSoapOut\">\r\n <wsdl:part
520
- name=\"parameters\" element=\"tns:RolesResponse\" />\r\n </wsdl:message>\r\n
521
- \ <wsdl:message name=\"DepartmentsSoapIn\">\r\n <wsdl:part name=\"parameters\"
522
- element=\"tns:Departments\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"DepartmentsSoapOut\">\r\n
523
- \ <wsdl:part name=\"parameters\" element=\"tns:DepartmentsResponse\" />\r\n
524
- \ </wsdl:message>\r\n <wsdl:message name=\"CountriesSoapIn\">\r\n <wsdl:part
525
- name=\"parameters\" element=\"tns:Countries\" />\r\n </wsdl:message>\r\n
526
- \ <wsdl:message name=\"CountriesSoapOut\">\r\n <wsdl:part name=\"parameters\"
527
- element=\"tns:CountriesResponse\" />\r\n </wsdl:message>\r\n <wsdl:message
528
- name=\"AdvertisersHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
529
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"AdvertisersHttpGetOut\">\r\n
530
- \ <wsdl:part name=\"Body\" element=\"tns:ArrayOfAdvertiser\" />\r\n </wsdl:message>\r\n
531
- \ <wsdl:message name=\"VerticalsHttpGetIn\">\r\n <wsdl:part name=\"api_key\"
532
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"VerticalsHttpGetOut\">\r\n
533
- \ <wsdl:part name=\"Body\" element=\"tns:ArrayOfVertical\" />\r\n </wsdl:message>\r\n
534
- \ <wsdl:message name=\"GetAPIKeyHttpGetIn\">\r\n <wsdl:part name=\"username\"
535
- type=\"s:string\" />\r\n <wsdl:part name=\"password\" type=\"s:string\"
536
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetAPIKeyHttpGetOut\">\r\n
537
- \ <wsdl:part name=\"Body\" element=\"tns:string\" />\r\n </wsdl:message>\r\n
538
- \ <wsdl:message name=\"CurrenciesHttpGetIn\">\r\n <wsdl:part name=\"api_key\"
539
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"CurrenciesHttpGetOut\">\r\n
540
- \ <wsdl:part name=\"Body\" element=\"tns:currencies_response\" />\r\n </wsdl:message>\r\n
541
- \ <wsdl:message name=\"AffiliateTiersHttpGetIn\">\r\n <wsdl:part name=\"api_key\"
542
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"AffiliateTiersHttpGetOut\">\r\n
543
- \ <wsdl:part name=\"Body\" element=\"tns:affiliate_tiers_response\" />\r\n
544
- \ </wsdl:message>\r\n <wsdl:message name=\"PaymentSettingsHttpGetIn\">\r\n
545
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
546
- \ <wsdl:message name=\"PaymentSettingsHttpGetOut\">\r\n <wsdl:part name=\"Body\"
547
- element=\"tns:payment_settings_response\" />\r\n </wsdl:message>\r\n <wsdl:message
548
- name=\"BillingCyclesHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
549
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"BillingCyclesHttpGetOut\">\r\n
550
- \ <wsdl:part name=\"Body\" element=\"tns:billing_cycles_response\" />\r\n
551
- \ </wsdl:message>\r\n <wsdl:message name=\"PaymentTypesHttpGetIn\">\r\n <wsdl:part
552
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
553
- name=\"PaymentTypesHttpGetOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:payment_types_response\"
554
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"LanguagesHttpGetIn\">\r\n
555
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
556
- \ <wsdl:message name=\"LanguagesHttpGetOut\">\r\n <wsdl:part name=\"Body\"
557
- element=\"tns:languages_response\" />\r\n </wsdl:message>\r\n <wsdl:message
558
- name=\"AffiliateTagsHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
559
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"AffiliateTagsHttpGetOut\">\r\n
560
- \ <wsdl:part name=\"Body\" element=\"tns:affiliate_tags_response\" />\r\n
561
- \ </wsdl:message>\r\n <wsdl:message name=\"ExchangeRatesHttpGetIn\">\r\n
562
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n <wsdl:part name=\"start_date\"
563
- type=\"s:string\" />\r\n <wsdl:part name=\"end_date\" type=\"s:string\"
564
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"ExchangeRatesHttpGetOut\">\r\n
565
- \ <wsdl:part name=\"Body\" element=\"tns:exchange_rates_response\" />\r\n
566
- \ </wsdl:message>\r\n <wsdl:message name=\"AccountStatusesHttpGetIn\">\r\n
567
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
568
- \ <wsdl:message name=\"AccountStatusesHttpGetOut\">\r\n <wsdl:part name=\"Body\"
569
- element=\"tns:account_statuses_response\" />\r\n </wsdl:message>\r\n <wsdl:message
570
- name=\"OfferStatusesHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
571
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"OfferStatusesHttpGetOut\">\r\n
572
- \ <wsdl:part name=\"Body\" element=\"tns:offer_statuses_response\" />\r\n
573
- \ </wsdl:message>\r\n <wsdl:message name=\"OfferTypesHttpGetIn\">\r\n <wsdl:part
574
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
575
- name=\"OfferTypesHttpGetOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:offer_types_response\"
576
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"PriceFormatsHttpGetIn\">\r\n
577
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
578
- \ <wsdl:message name=\"PriceFormatsHttpGetOut\">\r\n <wsdl:part name=\"Body\"
579
- element=\"tns:price_formats_response\" />\r\n </wsdl:message>\r\n <wsdl:message
580
- name=\"CapTypesHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
581
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapTypesHttpGetOut\">\r\n
582
- \ <wsdl:part name=\"Body\" element=\"tns:cap_types_response\" />\r\n </wsdl:message>\r\n
583
- \ <wsdl:message name=\"CapIntervalsHttpGetIn\">\r\n <wsdl:part name=\"api_key\"
584
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapIntervalsHttpGetOut\">\r\n
585
- \ <wsdl:part name=\"Body\" element=\"tns:cap_intervals_response\" />\r\n
586
- \ </wsdl:message>\r\n <wsdl:message name=\"MediaTypesHttpGetIn\">\r\n <wsdl:part
587
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
588
- name=\"MediaTypesHttpGetOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:media_types_response\"
589
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"RolesHttpGetIn\">\r\n <wsdl:part
590
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
591
- name=\"RolesHttpGetOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:roles_response\"
592
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"DepartmentsHttpGetIn\">\r\n
593
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
594
- \ <wsdl:message name=\"DepartmentsHttpGetOut\">\r\n <wsdl:part name=\"Body\"
595
- element=\"tns:departments_response\" />\r\n </wsdl:message>\r\n <wsdl:message
596
- name=\"CountriesHttpGetIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
597
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CountriesHttpGetOut\">\r\n
598
- \ <wsdl:part name=\"Body\" element=\"tns:countries_response\" />\r\n </wsdl:message>\r\n
599
- \ <wsdl:message name=\"AdvertisersHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
600
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"AdvertisersHttpPostOut\">\r\n
601
- \ <wsdl:part name=\"Body\" element=\"tns:ArrayOfAdvertiser\" />\r\n </wsdl:message>\r\n
602
- \ <wsdl:message name=\"VerticalsHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
603
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"VerticalsHttpPostOut\">\r\n
604
- \ <wsdl:part name=\"Body\" element=\"tns:ArrayOfVertical\" />\r\n </wsdl:message>\r\n
605
- \ <wsdl:message name=\"GetAPIKeyHttpPostIn\">\r\n <wsdl:part name=\"username\"
606
- type=\"s:string\" />\r\n <wsdl:part name=\"password\" type=\"s:string\"
607
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"GetAPIKeyHttpPostOut\">\r\n
608
- \ <wsdl:part name=\"Body\" element=\"tns:string\" />\r\n </wsdl:message>\r\n
609
- \ <wsdl:message name=\"CurrenciesHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
610
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"CurrenciesHttpPostOut\">\r\n
611
- \ <wsdl:part name=\"Body\" element=\"tns:currencies_response\" />\r\n </wsdl:message>\r\n
612
- \ <wsdl:message name=\"AffiliateTiersHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
613
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"AffiliateTiersHttpPostOut\">\r\n
614
- \ <wsdl:part name=\"Body\" element=\"tns:affiliate_tiers_response\" />\r\n
615
- \ </wsdl:message>\r\n <wsdl:message name=\"PaymentSettingsHttpPostIn\">\r\n
616
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
617
- \ <wsdl:message name=\"PaymentSettingsHttpPostOut\">\r\n <wsdl:part name=\"Body\"
618
- element=\"tns:payment_settings_response\" />\r\n </wsdl:message>\r\n <wsdl:message
619
- name=\"BillingCyclesHttpPostIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
620
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"BillingCyclesHttpPostOut\">\r\n
621
- \ <wsdl:part name=\"Body\" element=\"tns:billing_cycles_response\" />\r\n
622
- \ </wsdl:message>\r\n <wsdl:message name=\"PaymentTypesHttpPostIn\">\r\n
623
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
624
- \ <wsdl:message name=\"PaymentTypesHttpPostOut\">\r\n <wsdl:part name=\"Body\"
625
- element=\"tns:payment_types_response\" />\r\n </wsdl:message>\r\n <wsdl:message
626
- name=\"LanguagesHttpPostIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
627
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"LanguagesHttpPostOut\">\r\n
628
- \ <wsdl:part name=\"Body\" element=\"tns:languages_response\" />\r\n </wsdl:message>\r\n
629
- \ <wsdl:message name=\"AffiliateTagsHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
630
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"AffiliateTagsHttpPostOut\">\r\n
631
- \ <wsdl:part name=\"Body\" element=\"tns:affiliate_tags_response\" />\r\n
632
- \ </wsdl:message>\r\n <wsdl:message name=\"ExchangeRatesHttpPostIn\">\r\n
633
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n <wsdl:part name=\"start_date\"
634
- type=\"s:string\" />\r\n <wsdl:part name=\"end_date\" type=\"s:string\"
635
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"ExchangeRatesHttpPostOut\">\r\n
636
- \ <wsdl:part name=\"Body\" element=\"tns:exchange_rates_response\" />\r\n
637
- \ </wsdl:message>\r\n <wsdl:message name=\"AccountStatusesHttpPostIn\">\r\n
638
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
639
- \ <wsdl:message name=\"AccountStatusesHttpPostOut\">\r\n <wsdl:part name=\"Body\"
640
- element=\"tns:account_statuses_response\" />\r\n </wsdl:message>\r\n <wsdl:message
641
- name=\"OfferStatusesHttpPostIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
642
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"OfferStatusesHttpPostOut\">\r\n
643
- \ <wsdl:part name=\"Body\" element=\"tns:offer_statuses_response\" />\r\n
644
- \ </wsdl:message>\r\n <wsdl:message name=\"OfferTypesHttpPostIn\">\r\n <wsdl:part
645
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
646
- name=\"OfferTypesHttpPostOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:offer_types_response\"
647
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"PriceFormatsHttpPostIn\">\r\n
648
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
649
- \ <wsdl:message name=\"PriceFormatsHttpPostOut\">\r\n <wsdl:part name=\"Body\"
650
- element=\"tns:price_formats_response\" />\r\n </wsdl:message>\r\n <wsdl:message
651
- name=\"CapTypesHttpPostIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
652
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapTypesHttpPostOut\">\r\n
653
- \ <wsdl:part name=\"Body\" element=\"tns:cap_types_response\" />\r\n </wsdl:message>\r\n
654
- \ <wsdl:message name=\"CapIntervalsHttpPostIn\">\r\n <wsdl:part name=\"api_key\"
655
- type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message name=\"CapIntervalsHttpPostOut\">\r\n
656
- \ <wsdl:part name=\"Body\" element=\"tns:cap_intervals_response\" />\r\n
657
- \ </wsdl:message>\r\n <wsdl:message name=\"MediaTypesHttpPostIn\">\r\n <wsdl:part
658
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
659
- name=\"MediaTypesHttpPostOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:media_types_response\"
660
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"RolesHttpPostIn\">\r\n <wsdl:part
661
- name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n <wsdl:message
662
- name=\"RolesHttpPostOut\">\r\n <wsdl:part name=\"Body\" element=\"tns:roles_response\"
663
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"DepartmentsHttpPostIn\">\r\n
664
- \ <wsdl:part name=\"api_key\" type=\"s:string\" />\r\n </wsdl:message>\r\n
665
- \ <wsdl:message name=\"DepartmentsHttpPostOut\">\r\n <wsdl:part name=\"Body\"
666
- element=\"tns:departments_response\" />\r\n </wsdl:message>\r\n <wsdl:message
667
- name=\"CountriesHttpPostIn\">\r\n <wsdl:part name=\"api_key\" type=\"s:string\"
668
- />\r\n </wsdl:message>\r\n <wsdl:message name=\"CountriesHttpPostOut\">\r\n
669
- \ <wsdl:part name=\"Body\" element=\"tns:countries_response\" />\r\n </wsdl:message>\r\n
670
- \ <wsdl:portType name=\"getSoap\">\r\n <wsdl:operation name=\"Advertisers\">\r\n
671
- \ <wsdl:input message=\"tns:AdvertisersSoapIn\" />\r\n <wsdl:output
672
- message=\"tns:AdvertisersSoapOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
673
- name=\"Verticals\">\r\n <wsdl:input message=\"tns:VerticalsSoapIn\" />\r\n
674
- \ <wsdl:output message=\"tns:VerticalsSoapOut\" />\r\n </wsdl:operation>\r\n
675
- \ <wsdl:operation name=\"GetAPIKey\">\r\n <wsdl:input message=\"tns:GetAPIKeySoapIn\"
676
- />\r\n <wsdl:output message=\"tns:GetAPIKeySoapOut\" />\r\n </wsdl:operation>\r\n
677
- \ <wsdl:operation name=\"Currencies\">\r\n <wsdl:input message=\"tns:CurrenciesSoapIn\"
678
- />\r\n <wsdl:output message=\"tns:CurrenciesSoapOut\" />\r\n </wsdl:operation>\r\n
679
- \ <wsdl:operation name=\"AffiliateTiers\">\r\n <wsdl:input message=\"tns:AffiliateTiersSoapIn\"
680
- />\r\n <wsdl:output message=\"tns:AffiliateTiersSoapOut\" />\r\n </wsdl:operation>\r\n
681
- \ <wsdl:operation name=\"PaymentSettings\">\r\n <wsdl:input message=\"tns:PaymentSettingsSoapIn\"
682
- />\r\n <wsdl:output message=\"tns:PaymentSettingsSoapOut\" />\r\n </wsdl:operation>\r\n
683
- \ <wsdl:operation name=\"BillingCycles\">\r\n <wsdl:input message=\"tns:BillingCyclesSoapIn\"
684
- />\r\n <wsdl:output message=\"tns:BillingCyclesSoapOut\" />\r\n </wsdl:operation>\r\n
685
- \ <wsdl:operation name=\"PaymentTypes\">\r\n <wsdl:input message=\"tns:PaymentTypesSoapIn\"
686
- />\r\n <wsdl:output message=\"tns:PaymentTypesSoapOut\" />\r\n </wsdl:operation>\r\n
687
- \ <wsdl:operation name=\"Languages\">\r\n <wsdl:input message=\"tns:LanguagesSoapIn\"
688
- />\r\n <wsdl:output message=\"tns:LanguagesSoapOut\" />\r\n </wsdl:operation>\r\n
689
- \ <wsdl:operation name=\"AffiliateTags\">\r\n <wsdl:input message=\"tns:AffiliateTagsSoapIn\"
690
- />\r\n <wsdl:output message=\"tns:AffiliateTagsSoapOut\" />\r\n </wsdl:operation>\r\n
691
- \ <wsdl:operation name=\"ExchangeRates\">\r\n <wsdl:input message=\"tns:ExchangeRatesSoapIn\"
692
- />\r\n <wsdl:output message=\"tns:ExchangeRatesSoapOut\" />\r\n </wsdl:operation>\r\n
693
- \ <wsdl:operation name=\"AccountStatuses\">\r\n <wsdl:input message=\"tns:AccountStatusesSoapIn\"
694
- />\r\n <wsdl:output message=\"tns:AccountStatusesSoapOut\" />\r\n </wsdl:operation>\r\n
695
- \ <wsdl:operation name=\"OfferStatuses\">\r\n <wsdl:input message=\"tns:OfferStatusesSoapIn\"
696
- />\r\n <wsdl:output message=\"tns:OfferStatusesSoapOut\" />\r\n </wsdl:operation>\r\n
697
- \ <wsdl:operation name=\"OfferTypes\">\r\n <wsdl:input message=\"tns:OfferTypesSoapIn\"
698
- />\r\n <wsdl:output message=\"tns:OfferTypesSoapOut\" />\r\n </wsdl:operation>\r\n
699
- \ <wsdl:operation name=\"PriceFormats\">\r\n <wsdl:input message=\"tns:PriceFormatsSoapIn\"
700
- />\r\n <wsdl:output message=\"tns:PriceFormatsSoapOut\" />\r\n </wsdl:operation>\r\n
701
- \ <wsdl:operation name=\"CapTypes\">\r\n <wsdl:input message=\"tns:CapTypesSoapIn\"
702
- />\r\n <wsdl:output message=\"tns:CapTypesSoapOut\" />\r\n </wsdl:operation>\r\n
703
- \ <wsdl:operation name=\"CapIntervals\">\r\n <wsdl:input message=\"tns:CapIntervalsSoapIn\"
704
- />\r\n <wsdl:output message=\"tns:CapIntervalsSoapOut\" />\r\n </wsdl:operation>\r\n
705
- \ <wsdl:operation name=\"MediaTypes\">\r\n <wsdl:input message=\"tns:MediaTypesSoapIn\"
706
- />\r\n <wsdl:output message=\"tns:MediaTypesSoapOut\" />\r\n </wsdl:operation>\r\n
707
- \ <wsdl:operation name=\"Roles\">\r\n <wsdl:input message=\"tns:RolesSoapIn\"
708
- />\r\n <wsdl:output message=\"tns:RolesSoapOut\" />\r\n </wsdl:operation>\r\n
709
- \ <wsdl:operation name=\"Departments\">\r\n <wsdl:input message=\"tns:DepartmentsSoapIn\"
710
- />\r\n <wsdl:output message=\"tns:DepartmentsSoapOut\" />\r\n </wsdl:operation>\r\n
711
- \ <wsdl:operation name=\"Countries\">\r\n <wsdl:input message=\"tns:CountriesSoapIn\"
712
- />\r\n <wsdl:output message=\"tns:CountriesSoapOut\" />\r\n </wsdl:operation>\r\n
713
- \ </wsdl:portType>\r\n <wsdl:portType name=\"getHttpGet\">\r\n <wsdl:operation
714
- name=\"Advertisers\">\r\n <wsdl:input message=\"tns:AdvertisersHttpGetIn\"
715
- />\r\n <wsdl:output message=\"tns:AdvertisersHttpGetOut\" />\r\n </wsdl:operation>\r\n
716
- \ <wsdl:operation name=\"Verticals\">\r\n <wsdl:input message=\"tns:VerticalsHttpGetIn\"
717
- />\r\n <wsdl:output message=\"tns:VerticalsHttpGetOut\" />\r\n </wsdl:operation>\r\n
718
- \ <wsdl:operation name=\"GetAPIKey\">\r\n <wsdl:input message=\"tns:GetAPIKeyHttpGetIn\"
719
- />\r\n <wsdl:output message=\"tns:GetAPIKeyHttpGetOut\" />\r\n </wsdl:operation>\r\n
720
- \ <wsdl:operation name=\"Currencies\">\r\n <wsdl:input message=\"tns:CurrenciesHttpGetIn\"
721
- />\r\n <wsdl:output message=\"tns:CurrenciesHttpGetOut\" />\r\n </wsdl:operation>\r\n
722
- \ <wsdl:operation name=\"AffiliateTiers\">\r\n <wsdl:input message=\"tns:AffiliateTiersHttpGetIn\"
723
- />\r\n <wsdl:output message=\"tns:AffiliateTiersHttpGetOut\" />\r\n </wsdl:operation>\r\n
724
- \ <wsdl:operation name=\"PaymentSettings\">\r\n <wsdl:input message=\"tns:PaymentSettingsHttpGetIn\"
725
- />\r\n <wsdl:output message=\"tns:PaymentSettingsHttpGetOut\" />\r\n
726
- \ </wsdl:operation>\r\n <wsdl:operation name=\"BillingCycles\">\r\n <wsdl:input
727
- message=\"tns:BillingCyclesHttpGetIn\" />\r\n <wsdl:output message=\"tns:BillingCyclesHttpGetOut\"
728
- />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"PaymentTypes\">\r\n
729
- \ <wsdl:input message=\"tns:PaymentTypesHttpGetIn\" />\r\n <wsdl:output
730
- message=\"tns:PaymentTypesHttpGetOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
731
- name=\"Languages\">\r\n <wsdl:input message=\"tns:LanguagesHttpGetIn\"
732
- />\r\n <wsdl:output message=\"tns:LanguagesHttpGetOut\" />\r\n </wsdl:operation>\r\n
733
- \ <wsdl:operation name=\"AffiliateTags\">\r\n <wsdl:input message=\"tns:AffiliateTagsHttpGetIn\"
734
- />\r\n <wsdl:output message=\"tns:AffiliateTagsHttpGetOut\" />\r\n </wsdl:operation>\r\n
735
- \ <wsdl:operation name=\"ExchangeRates\">\r\n <wsdl:input message=\"tns:ExchangeRatesHttpGetIn\"
736
- />\r\n <wsdl:output message=\"tns:ExchangeRatesHttpGetOut\" />\r\n </wsdl:operation>\r\n
737
- \ <wsdl:operation name=\"AccountStatuses\">\r\n <wsdl:input message=\"tns:AccountStatusesHttpGetIn\"
738
- />\r\n <wsdl:output message=\"tns:AccountStatusesHttpGetOut\" />\r\n
739
- \ </wsdl:operation>\r\n <wsdl:operation name=\"OfferStatuses\">\r\n <wsdl:input
740
- message=\"tns:OfferStatusesHttpGetIn\" />\r\n <wsdl:output message=\"tns:OfferStatusesHttpGetOut\"
741
- />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"OfferTypes\">\r\n
742
- \ <wsdl:input message=\"tns:OfferTypesHttpGetIn\" />\r\n <wsdl:output
743
- message=\"tns:OfferTypesHttpGetOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
744
- name=\"PriceFormats\">\r\n <wsdl:input message=\"tns:PriceFormatsHttpGetIn\"
745
- />\r\n <wsdl:output message=\"tns:PriceFormatsHttpGetOut\" />\r\n </wsdl:operation>\r\n
746
- \ <wsdl:operation name=\"CapTypes\">\r\n <wsdl:input message=\"tns:CapTypesHttpGetIn\"
747
- />\r\n <wsdl:output message=\"tns:CapTypesHttpGetOut\" />\r\n </wsdl:operation>\r\n
748
- \ <wsdl:operation name=\"CapIntervals\">\r\n <wsdl:input message=\"tns:CapIntervalsHttpGetIn\"
749
- />\r\n <wsdl:output message=\"tns:CapIntervalsHttpGetOut\" />\r\n </wsdl:operation>\r\n
750
- \ <wsdl:operation name=\"MediaTypes\">\r\n <wsdl:input message=\"tns:MediaTypesHttpGetIn\"
751
- />\r\n <wsdl:output message=\"tns:MediaTypesHttpGetOut\" />\r\n </wsdl:operation>\r\n
752
- \ <wsdl:operation name=\"Roles\">\r\n <wsdl:input message=\"tns:RolesHttpGetIn\"
753
- />\r\n <wsdl:output message=\"tns:RolesHttpGetOut\" />\r\n </wsdl:operation>\r\n
754
- \ <wsdl:operation name=\"Departments\">\r\n <wsdl:input message=\"tns:DepartmentsHttpGetIn\"
755
- />\r\n <wsdl:output message=\"tns:DepartmentsHttpGetOut\" />\r\n </wsdl:operation>\r\n
756
- \ <wsdl:operation name=\"Countries\">\r\n <wsdl:input message=\"tns:CountriesHttpGetIn\"
757
- />\r\n <wsdl:output message=\"tns:CountriesHttpGetOut\" />\r\n </wsdl:operation>\r\n
758
- \ </wsdl:portType>\r\n <wsdl:portType name=\"getHttpPost\">\r\n <wsdl:operation
759
- name=\"Advertisers\">\r\n <wsdl:input message=\"tns:AdvertisersHttpPostIn\"
760
- />\r\n <wsdl:output message=\"tns:AdvertisersHttpPostOut\" />\r\n </wsdl:operation>\r\n
761
- \ <wsdl:operation name=\"Verticals\">\r\n <wsdl:input message=\"tns:VerticalsHttpPostIn\"
762
- />\r\n <wsdl:output message=\"tns:VerticalsHttpPostOut\" />\r\n </wsdl:operation>\r\n
763
- \ <wsdl:operation name=\"GetAPIKey\">\r\n <wsdl:input message=\"tns:GetAPIKeyHttpPostIn\"
764
- />\r\n <wsdl:output message=\"tns:GetAPIKeyHttpPostOut\" />\r\n </wsdl:operation>\r\n
765
- \ <wsdl:operation name=\"Currencies\">\r\n <wsdl:input message=\"tns:CurrenciesHttpPostIn\"
766
- />\r\n <wsdl:output message=\"tns:CurrenciesHttpPostOut\" />\r\n </wsdl:operation>\r\n
767
- \ <wsdl:operation name=\"AffiliateTiers\">\r\n <wsdl:input message=\"tns:AffiliateTiersHttpPostIn\"
768
- />\r\n <wsdl:output message=\"tns:AffiliateTiersHttpPostOut\" />\r\n
769
- \ </wsdl:operation>\r\n <wsdl:operation name=\"PaymentSettings\">\r\n
770
- \ <wsdl:input message=\"tns:PaymentSettingsHttpPostIn\" />\r\n <wsdl:output
771
- message=\"tns:PaymentSettingsHttpPostOut\" />\r\n </wsdl:operation>\r\n
772
- \ <wsdl:operation name=\"BillingCycles\">\r\n <wsdl:input message=\"tns:BillingCyclesHttpPostIn\"
773
- />\r\n <wsdl:output message=\"tns:BillingCyclesHttpPostOut\" />\r\n </wsdl:operation>\r\n
774
- \ <wsdl:operation name=\"PaymentTypes\">\r\n <wsdl:input message=\"tns:PaymentTypesHttpPostIn\"
775
- />\r\n <wsdl:output message=\"tns:PaymentTypesHttpPostOut\" />\r\n </wsdl:operation>\r\n
776
- \ <wsdl:operation name=\"Languages\">\r\n <wsdl:input message=\"tns:LanguagesHttpPostIn\"
777
- />\r\n <wsdl:output message=\"tns:LanguagesHttpPostOut\" />\r\n </wsdl:operation>\r\n
778
- \ <wsdl:operation name=\"AffiliateTags\">\r\n <wsdl:input message=\"tns:AffiliateTagsHttpPostIn\"
779
- />\r\n <wsdl:output message=\"tns:AffiliateTagsHttpPostOut\" />\r\n </wsdl:operation>\r\n
780
- \ <wsdl:operation name=\"ExchangeRates\">\r\n <wsdl:input message=\"tns:ExchangeRatesHttpPostIn\"
781
- />\r\n <wsdl:output message=\"tns:ExchangeRatesHttpPostOut\" />\r\n </wsdl:operation>\r\n
782
- \ <wsdl:operation name=\"AccountStatuses\">\r\n <wsdl:input message=\"tns:AccountStatusesHttpPostIn\"
783
- />\r\n <wsdl:output message=\"tns:AccountStatusesHttpPostOut\" />\r\n
784
- \ </wsdl:operation>\r\n <wsdl:operation name=\"OfferStatuses\">\r\n <wsdl:input
785
- message=\"tns:OfferStatusesHttpPostIn\" />\r\n <wsdl:output message=\"tns:OfferStatusesHttpPostOut\"
786
- />\r\n </wsdl:operation>\r\n <wsdl:operation name=\"OfferTypes\">\r\n
787
- \ <wsdl:input message=\"tns:OfferTypesHttpPostIn\" />\r\n <wsdl:output
788
- message=\"tns:OfferTypesHttpPostOut\" />\r\n </wsdl:operation>\r\n <wsdl:operation
789
- name=\"PriceFormats\">\r\n <wsdl:input message=\"tns:PriceFormatsHttpPostIn\"
790
- />\r\n <wsdl:output message=\"tns:PriceFormatsHttpPostOut\" />\r\n </wsdl:operation>\r\n
791
- \ <wsdl:operation name=\"CapTypes\">\r\n <wsdl:input message=\"tns:CapTypesHttpPostIn\"
792
- />\r\n <wsdl:output message=\"tns:CapTypesHttpPostOut\" />\r\n </wsdl:operation>\r\n
793
- \ <wsdl:operation name=\"CapIntervals\">\r\n <wsdl:input message=\"tns:CapIntervalsHttpPostIn\"
794
- />\r\n <wsdl:output message=\"tns:CapIntervalsHttpPostOut\" />\r\n </wsdl:operation>\r\n
795
- \ <wsdl:operation name=\"MediaTypes\">\r\n <wsdl:input message=\"tns:MediaTypesHttpPostIn\"
796
- />\r\n <wsdl:output message=\"tns:MediaTypesHttpPostOut\" />\r\n </wsdl:operation>\r\n
797
- \ <wsdl:operation name=\"Roles\">\r\n <wsdl:input message=\"tns:RolesHttpPostIn\"
798
- />\r\n <wsdl:output message=\"tns:RolesHttpPostOut\" />\r\n </wsdl:operation>\r\n
799
- \ <wsdl:operation name=\"Departments\">\r\n <wsdl:input message=\"tns:DepartmentsHttpPostIn\"
800
- />\r\n <wsdl:output message=\"tns:DepartmentsHttpPostOut\" />\r\n </wsdl:operation>\r\n
801
- \ <wsdl:operation name=\"Countries\">\r\n <wsdl:input message=\"tns:CountriesHttpPostIn\"
802
- />\r\n <wsdl:output message=\"tns:CountriesHttpPostOut\" />\r\n </wsdl:operation>\r\n
803
- \ </wsdl:portType>\r\n <wsdl:binding name=\"getSoap\" type=\"tns:getSoap\">\r\n
804
- \ <soap:binding transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n
805
- \ <wsdl:operation name=\"Advertisers\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Advertisers\"
806
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
807
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
808
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
809
- name=\"Verticals\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Verticals\"
810
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
811
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
812
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
813
- name=\"GetAPIKey\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/GetAPIKey\"
814
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
815
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
816
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
817
- name=\"Currencies\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Currencies\"
818
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
819
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
820
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
821
- name=\"AffiliateTiers\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/AffiliateTiers\"
822
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
823
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
824
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
825
- name=\"PaymentSettings\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/PaymentSettings\"
826
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
827
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
828
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
829
- name=\"BillingCycles\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/BillingCycles\"
830
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
831
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
832
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
833
- name=\"PaymentTypes\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/PaymentTypes\"
834
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
835
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
836
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
837
- name=\"Languages\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Languages\"
838
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
839
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
840
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
841
- name=\"AffiliateTags\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/AffiliateTags\"
842
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
843
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
844
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
845
- name=\"ExchangeRates\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/ExchangeRates\"
846
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
847
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
848
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
849
- name=\"AccountStatuses\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/AccountStatuses\"
850
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
851
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
852
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
853
- name=\"OfferStatuses\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/OfferStatuses\"
854
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
855
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
856
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
857
- name=\"OfferTypes\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/OfferTypes\"
858
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
859
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
860
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
861
- name=\"PriceFormats\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/PriceFormats\"
862
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
863
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
864
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
865
- name=\"CapTypes\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/CapTypes\"
866
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
867
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
868
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
869
- name=\"CapIntervals\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/CapIntervals\"
870
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
871
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
872
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
873
- name=\"MediaTypes\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/MediaTypes\"
874
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
875
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
876
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
877
- name=\"Roles\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Roles\"
878
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
879
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
880
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
881
- name=\"Departments\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Departments\"
882
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
883
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
884
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
885
- name=\"Countries\">\r\n <soap:operation soapAction=\"http://cakemarketing.com/api/1/Countries\"
886
- style=\"document\" />\r\n <wsdl:input>\r\n <soap:body use=\"literal\"
887
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap:body use=\"literal\"
888
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
889
- \ <wsdl:binding name=\"getSoap12\" type=\"tns:getSoap\">\r\n <soap12:binding
890
- transport=\"http://schemas.xmlsoap.org/soap/http\" />\r\n <wsdl:operation
891
- name=\"Advertisers\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Advertisers\"
892
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
893
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
894
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
895
- name=\"Verticals\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Verticals\"
896
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
897
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
898
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
899
- name=\"GetAPIKey\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/GetAPIKey\"
900
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
901
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
902
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
903
- name=\"Currencies\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Currencies\"
904
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
905
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
906
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
907
- name=\"AffiliateTiers\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/AffiliateTiers\"
908
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
909
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
910
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
911
- name=\"PaymentSettings\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/PaymentSettings\"
912
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
913
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
914
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
915
- name=\"BillingCycles\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/BillingCycles\"
916
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
917
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
918
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
919
- name=\"PaymentTypes\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/PaymentTypes\"
920
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
921
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
922
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
923
- name=\"Languages\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Languages\"
924
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
925
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
926
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
927
- name=\"AffiliateTags\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/AffiliateTags\"
928
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
929
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
930
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
931
- name=\"ExchangeRates\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/ExchangeRates\"
932
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
933
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
934
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
935
- name=\"AccountStatuses\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/AccountStatuses\"
936
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
937
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
938
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
939
- name=\"OfferStatuses\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/OfferStatuses\"
940
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
941
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
942
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
943
- name=\"OfferTypes\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/OfferTypes\"
944
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
945
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
946
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
947
- name=\"PriceFormats\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/PriceFormats\"
948
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
949
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
950
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
951
- name=\"CapTypes\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/CapTypes\"
952
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
953
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
954
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
955
- name=\"CapIntervals\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/CapIntervals\"
956
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
957
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
958
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
959
- name=\"MediaTypes\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/MediaTypes\"
960
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
961
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
962
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
963
- name=\"Roles\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Roles\"
964
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
965
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
966
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
967
- name=\"Departments\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Departments\"
968
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
969
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
970
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
971
- name=\"Countries\">\r\n <soap12:operation soapAction=\"http://cakemarketing.com/api/1/Countries\"
972
- style=\"document\" />\r\n <wsdl:input>\r\n <soap12:body use=\"literal\"
973
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <soap12:body use=\"literal\"
974
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
975
- \ <wsdl:binding name=\"getHttpGet\" type=\"tns:getHttpGet\">\r\n <http:binding
976
- verb=\"GET\" />\r\n <wsdl:operation name=\"Advertisers\">\r\n <http:operation
977
- location=\"/Advertisers\" />\r\n <wsdl:input>\r\n <http:urlEncoded
978
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
979
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
980
- name=\"Verticals\">\r\n <http:operation location=\"/Verticals\" />\r\n
981
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
982
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
983
- \ </wsdl:operation>\r\n <wsdl:operation name=\"GetAPIKey\">\r\n <http:operation
984
- location=\"/GetAPIKey\" />\r\n <wsdl:input>\r\n <http:urlEncoded
985
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
986
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
987
- name=\"Currencies\">\r\n <http:operation location=\"/Currencies\" />\r\n
988
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
989
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
990
- \ </wsdl:operation>\r\n <wsdl:operation name=\"AffiliateTiers\">\r\n
991
- \ <http:operation location=\"/AffiliateTiers\" />\r\n <wsdl:input>\r\n
992
- \ <http:urlEncoded />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
993
- \ <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
994
- \ <wsdl:operation name=\"PaymentSettings\">\r\n <http:operation location=\"/PaymentSettings\"
995
- />\r\n <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
996
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
997
- \ </wsdl:operation>\r\n <wsdl:operation name=\"BillingCycles\">\r\n <http:operation
998
- location=\"/BillingCycles\" />\r\n <wsdl:input>\r\n <http:urlEncoded
999
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1000
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1001
- name=\"PaymentTypes\">\r\n <http:operation location=\"/PaymentTypes\"
1002
- />\r\n <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1003
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1004
- \ </wsdl:operation>\r\n <wsdl:operation name=\"Languages\">\r\n <http:operation
1005
- location=\"/Languages\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1006
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1007
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1008
- name=\"AffiliateTags\">\r\n <http:operation location=\"/AffiliateTags\"
1009
- />\r\n <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1010
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1011
- \ </wsdl:operation>\r\n <wsdl:operation name=\"ExchangeRates\">\r\n <http:operation
1012
- location=\"/ExchangeRates\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1013
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1014
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1015
- name=\"AccountStatuses\">\r\n <http:operation location=\"/AccountStatuses\"
1016
- />\r\n <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1017
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1018
- \ </wsdl:operation>\r\n <wsdl:operation name=\"OfferStatuses\">\r\n <http:operation
1019
- location=\"/OfferStatuses\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1020
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1021
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1022
- name=\"OfferTypes\">\r\n <http:operation location=\"/OfferTypes\" />\r\n
1023
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1024
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1025
- \ </wsdl:operation>\r\n <wsdl:operation name=\"PriceFormats\">\r\n <http:operation
1026
- location=\"/PriceFormats\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1027
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1028
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1029
- name=\"CapTypes\">\r\n <http:operation location=\"/CapTypes\" />\r\n
1030
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1031
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1032
- \ </wsdl:operation>\r\n <wsdl:operation name=\"CapIntervals\">\r\n <http:operation
1033
- location=\"/CapIntervals\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1034
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1035
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1036
- name=\"MediaTypes\">\r\n <http:operation location=\"/MediaTypes\" />\r\n
1037
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1038
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1039
- \ </wsdl:operation>\r\n <wsdl:operation name=\"Roles\">\r\n <http:operation
1040
- location=\"/Roles\" />\r\n <wsdl:input>\r\n <http:urlEncoded />\r\n
1041
- \ </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml part=\"Body\"
1042
- />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1043
- name=\"Departments\">\r\n <http:operation location=\"/Departments\" />\r\n
1044
- \ <wsdl:input>\r\n <http:urlEncoded />\r\n </wsdl:input>\r\n
1045
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1046
- \ </wsdl:operation>\r\n <wsdl:operation name=\"Countries\">\r\n <http:operation
1047
- location=\"/Countries\" />\r\n <wsdl:input>\r\n <http:urlEncoded
1048
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1049
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1050
- \ <wsdl:binding name=\"getHttpPost\" type=\"tns:getHttpPost\">\r\n <http:binding
1051
- verb=\"POST\" />\r\n <wsdl:operation name=\"Advertisers\">\r\n <http:operation
1052
- location=\"/Advertisers\" />\r\n <wsdl:input>\r\n <mime:content
1053
- type=\"application/x-www-form-urlencoded\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1054
- \ <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1055
- \ <wsdl:operation name=\"Verticals\">\r\n <http:operation location=\"/Verticals\"
1056
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1057
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1058
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1059
- name=\"GetAPIKey\">\r\n <http:operation location=\"/GetAPIKey\" />\r\n
1060
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1061
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1062
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1063
- name=\"Currencies\">\r\n <http:operation location=\"/Currencies\" />\r\n
1064
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1065
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1066
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1067
- name=\"AffiliateTiers\">\r\n <http:operation location=\"/AffiliateTiers\"
1068
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1069
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1070
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1071
- name=\"PaymentSettings\">\r\n <http:operation location=\"/PaymentSettings\"
1072
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1073
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1074
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1075
- name=\"BillingCycles\">\r\n <http:operation location=\"/BillingCycles\"
1076
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1077
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1078
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1079
- name=\"PaymentTypes\">\r\n <http:operation location=\"/PaymentTypes\"
1080
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1081
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1082
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1083
- name=\"Languages\">\r\n <http:operation location=\"/Languages\" />\r\n
1084
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1085
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1086
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1087
- name=\"AffiliateTags\">\r\n <http:operation location=\"/AffiliateTags\"
1088
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1089
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1090
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1091
- name=\"ExchangeRates\">\r\n <http:operation location=\"/ExchangeRates\"
1092
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1093
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1094
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1095
- name=\"AccountStatuses\">\r\n <http:operation location=\"/AccountStatuses\"
1096
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1097
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1098
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1099
- name=\"OfferStatuses\">\r\n <http:operation location=\"/OfferStatuses\"
1100
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1101
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1102
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1103
- name=\"OfferTypes\">\r\n <http:operation location=\"/OfferTypes\" />\r\n
1104
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1105
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1106
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1107
- name=\"PriceFormats\">\r\n <http:operation location=\"/PriceFormats\"
1108
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1109
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1110
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1111
- name=\"CapTypes\">\r\n <http:operation location=\"/CapTypes\" />\r\n
1112
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1113
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1114
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1115
- name=\"CapIntervals\">\r\n <http:operation location=\"/CapIntervals\"
1116
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1117
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1118
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1119
- name=\"MediaTypes\">\r\n <http:operation location=\"/MediaTypes\" />\r\n
1120
- \ <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1121
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1122
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n <wsdl:operation
1123
- name=\"Roles\">\r\n <http:operation location=\"/Roles\" />\r\n <wsdl:input>\r\n
1124
- \ <mime:content type=\"application/x-www-form-urlencoded\" />\r\n </wsdl:input>\r\n
1125
- \ <wsdl:output>\r\n <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n
1126
- \ </wsdl:operation>\r\n <wsdl:operation name=\"Departments\">\r\n <http:operation
1127
- location=\"/Departments\" />\r\n <wsdl:input>\r\n <mime:content
1128
- type=\"application/x-www-form-urlencoded\" />\r\n </wsdl:input>\r\n <wsdl:output>\r\n
1129
- \ <mime:mimeXml part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n
1130
- \ <wsdl:operation name=\"Countries\">\r\n <http:operation location=\"/Countries\"
1131
- />\r\n <wsdl:input>\r\n <mime:content type=\"application/x-www-form-urlencoded\"
1132
- />\r\n </wsdl:input>\r\n <wsdl:output>\r\n <mime:mimeXml
1133
- part=\"Body\" />\r\n </wsdl:output>\r\n </wsdl:operation>\r\n </wsdl:binding>\r\n
1134
- \ <wsdl:service name=\"get\">\r\n <wsdl:port name=\"getSoap\" binding=\"tns:getSoap\">\r\n
1135
- \ <soap:address location=\"https://cake-partner-domain.com/api/1/get.asmx\"
1136
- />\r\n </wsdl:port>\r\n <wsdl:port name=\"getSoap12\" binding=\"tns:getSoap12\">\r\n
1137
- \ <soap12:address location=\"https://cake-partner-domain.com/api/1/get.asmx\"
1138
- />\r\n </wsdl:port>\r\n <wsdl:port name=\"getHttpGet\" binding=\"tns:getHttpGet\">\r\n
1139
- \ <http:address location=\"https://cake-partner-domain.com/api/1/get.asmx\"
1140
- />\r\n </wsdl:port>\r\n <wsdl:port name=\"getHttpPost\" binding=\"tns:getHttpPost\">\r\n
1141
- \ <http:address location=\"https://cake-partner-domain.com/api/1/get.asmx\"
1142
- />\r\n </wsdl:port>\r\n </wsdl:service>\r\n</wsdl:definitions>"
1143
- http_version:
1144
- recorded_at: Wed, 02 Apr 2014 14:54:52 GMT
1145
- - request:
1146
- method: post
1147
- uri: https://cake-partner-domain.com/api/1/get.asmx
1148
- body:
1149
- encoding: UTF-8
1150
- string: |
1151
- <env:Envelope xmlns:lol0="http://cakemarketing.com/api/1/" xmlns:env="http://www.w3.org/2003/05/soap-envelope">
1152
- <env:Header>
1153
- </env:Header>
1154
- <env:Body>
1155
- <lol0:AccountStatuses>
1156
- <lol0:api_key>cake-api-key</lol0:api_key>
1157
- </lol0:AccountStatuses>
1158
- </env:Body>
1159
- </env:Envelope>
1160
- headers:
1161
- User-Agent:
1162
- - HTTPClient/1.0 (2.3.4.1, ruby 2.1.1 (2014-02-24))
1163
- Accept:
1164
- - "*/*"
1165
- Date:
1166
- - Wed, 02 Apr 2014 14:54:52 GMT
1167
- Soapaction:
1168
- - '"http://cakemarketing.com/api/1/AccountStatuses"'
1169
- Content-Type:
1170
- - application/soap+xml;charset=UTF-8
1171
- response:
1172
- status:
1173
- code: 200
1174
- message: OK
1175
- headers:
1176
- Cache-Control:
1177
- - private, max-age=0
1178
- Content-Type:
1179
- - application/soap+xml; charset=utf-8
1180
- Server:
1181
- - Microsoft-IIS/7.5
1182
- X-Aspnet-Version:
1183
- - 4.0.30319
1184
- X-Powered-By:
1185
- - ASP.NET
1186
- Date:
1187
- - Wed, 02 Apr 2014 14:54:52 GMT
1188
- Content-Length:
1189
- - '991'
1190
- body:
1191
- encoding: UTF-8
1192
- string: <?xml version="1.0" encoding="utf-8"?><soap:Envelope xmlns:soap="http://www.w3.org/2003/05/soap-envelope"
1193
- xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"><soap:Body><AccountStatusesResponse
1194
- xmlns="http://cakemarketing.com/api/1/"><AccountStatusesResult><success>true</success><row_count>3</row_count><account_statuses><account_status><account_status_id
1195
- xmlns="API:id_name_store">1</account_status_id><account_status_name xmlns="API:id_name_store">Active</account_status_name></account_status><account_status><account_status_id
1196
- xmlns="API:id_name_store">2</account_status_id><account_status_name xmlns="API:id_name_store">Inactive</account_status_name></account_status><account_status><account_status_id
1197
- xmlns="API:id_name_store">3</account_status_id><account_status_name xmlns="API:id_name_store">Pending</account_status_name></account_status></account_statuses></AccountStatusesResult></AccountStatusesResponse></soap:Body></soap:Envelope>
1198
- http_version:
1199
- recorded_at: Wed, 02 Apr 2014 14:54:52 GMT
1200
- recorded_with: VCR 2.9.0