Class: Solifyn::AffiliateApi
- Inherits:
-
Object
- Object
- Solifyn::AffiliateApi
- Defined in:
- lib/solifyn/api/affiliate_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
- #affiliate_controller_approve_connection(id, opts = {}) ⇒ nil
-
#affiliate_controller_approve_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_archive_connection(id, opts = {}) ⇒ nil
-
#affiliate_controller_archive_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_delete_override(id, opts = {}) ⇒ nil
-
#affiliate_controller_delete_override_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_earnings_connections(opts = {}) ⇒ nil
-
#affiliate_controller_get_earnings_connections_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_earnings_ledger(opts = {}) ⇒ nil
-
#affiliate_controller_get_earnings_ledger_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_earnings_stats(opts = {}) ⇒ nil
-
#affiliate_controller_get_earnings_stats_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_marketplace(opts = {}) ⇒ nil
-
#affiliate_controller_get_marketplace_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_program_connections(opts = {}) ⇒ nil
-
#affiliate_controller_get_program_connections_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_program_ledger(opts = {}) ⇒ nil
-
#affiliate_controller_get_program_ledger_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_get_program_settings(opts = {}) ⇒ nil
-
#affiliate_controller_get_program_settings_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_join_program(opts = {}) ⇒ nil
-
#affiliate_controller_join_program_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_reject_connection(id, opts = {}) ⇒ nil
-
#affiliate_controller_reject_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_save_override(opts = {}) ⇒ nil
-
#affiliate_controller_save_override_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
- #affiliate_controller_save_program_settings(opts = {}) ⇒ nil
-
#affiliate_controller_save_program_settings_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Nil, response status code and response headers.
-
#initialize(api_client = ApiClient.default) ⇒ AffiliateApi
constructor
A new instance of AffiliateApi.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ AffiliateApi
Returns a new instance of AffiliateApi.
19 20 21 |
# File 'lib/solifyn/api/affiliate_api.rb', line 19 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
17 18 19 |
# File 'lib/solifyn/api/affiliate_api.rb', line 17 def api_client @api_client end |
Instance Method Details
#affiliate_controller_approve_connection(id, opts = {}) ⇒ nil
25 26 27 28 |
# File 'lib/solifyn/api/affiliate_api.rb', line 25 def affiliate_controller_approve_connection(id, opts = {}) affiliate_controller_approve_connection_with_http_info(id, opts) nil end |
#affiliate_controller_approve_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 |
# File 'lib/solifyn/api/affiliate_api.rb', line 33 def affiliate_controller_approve_connection_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_approve_connection ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling AffiliateApi.affiliate_controller_approve_connection" end # resource path local_var_path = '/v1/affiliate/program/connections/{id}/approve'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_approve_connection", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_approve_connection\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_archive_connection(id, opts = {}) ⇒ nil
82 83 84 85 |
# File 'lib/solifyn/api/affiliate_api.rb', line 82 def affiliate_controller_archive_connection(id, opts = {}) affiliate_controller_archive_connection_with_http_info(id, opts) nil end |
#affiliate_controller_archive_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 |
# File 'lib/solifyn/api/affiliate_api.rb', line 90 def affiliate_controller_archive_connection_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_archive_connection ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling AffiliateApi.affiliate_controller_archive_connection" end # resource path local_var_path = '/v1/affiliate/program/connections/{id}/archive'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_archive_connection", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_archive_connection\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_delete_override(id, opts = {}) ⇒ nil
139 140 141 142 |
# File 'lib/solifyn/api/affiliate_api.rb', line 139 def affiliate_controller_delete_override(id, opts = {}) affiliate_controller_delete_override_with_http_info(id, opts) nil end |
#affiliate_controller_delete_override_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 |
# File 'lib/solifyn/api/affiliate_api.rb', line 147 def affiliate_controller_delete_override_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_delete_override ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling AffiliateApi.affiliate_controller_delete_override" end # resource path local_var_path = '/v1/affiliate/program/override/{id}'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_delete_override", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_delete_override\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_earnings_connections(opts = {}) ⇒ nil
195 196 197 198 |
# File 'lib/solifyn/api/affiliate_api.rb', line 195 def affiliate_controller_get_earnings_connections(opts = {}) affiliate_controller_get_earnings_connections_with_http_info(opts) nil end |
#affiliate_controller_get_earnings_connections_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/solifyn/api/affiliate_api.rb', line 202 def affiliate_controller_get_earnings_connections_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_earnings_connections ...' end # resource path local_var_path = '/v1/affiliate/earnings/connections' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_earnings_connections", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_earnings_connections\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_earnings_ledger(opts = {}) ⇒ nil
246 247 248 249 |
# File 'lib/solifyn/api/affiliate_api.rb', line 246 def affiliate_controller_get_earnings_ledger(opts = {}) affiliate_controller_get_earnings_ledger_with_http_info(opts) nil end |
#affiliate_controller_get_earnings_ledger_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 |
# File 'lib/solifyn/api/affiliate_api.rb', line 253 def affiliate_controller_get_earnings_ledger_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_earnings_ledger ...' end # resource path local_var_path = '/v1/affiliate/earnings/ledger' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_earnings_ledger", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_earnings_ledger\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_earnings_stats(opts = {}) ⇒ nil
297 298 299 300 |
# File 'lib/solifyn/api/affiliate_api.rb', line 297 def affiliate_controller_get_earnings_stats(opts = {}) affiliate_controller_get_earnings_stats_with_http_info(opts) nil end |
#affiliate_controller_get_earnings_stats_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 |
# File 'lib/solifyn/api/affiliate_api.rb', line 304 def affiliate_controller_get_earnings_stats_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_earnings_stats ...' end # resource path local_var_path = '/v1/affiliate/earnings/stats' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_earnings_stats", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_earnings_stats\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_marketplace(opts = {}) ⇒ nil
348 349 350 351 |
# File 'lib/solifyn/api/affiliate_api.rb', line 348 def affiliate_controller_get_marketplace(opts = {}) affiliate_controller_get_marketplace_with_http_info(opts) nil end |
#affiliate_controller_get_marketplace_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 |
# File 'lib/solifyn/api/affiliate_api.rb', line 355 def affiliate_controller_get_marketplace_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_marketplace ...' end # resource path local_var_path = '/v1/affiliate/marketplace' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_marketplace", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_marketplace\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_program_connections(opts = {}) ⇒ nil
399 400 401 402 |
# File 'lib/solifyn/api/affiliate_api.rb', line 399 def affiliate_controller_get_program_connections(opts = {}) affiliate_controller_get_program_connections_with_http_info(opts) nil end |
#affiliate_controller_get_program_connections_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 |
# File 'lib/solifyn/api/affiliate_api.rb', line 406 def affiliate_controller_get_program_connections_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_program_connections ...' end # resource path local_var_path = '/v1/affiliate/program/connections' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_program_connections", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_program_connections\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_program_ledger(opts = {}) ⇒ nil
450 451 452 453 |
# File 'lib/solifyn/api/affiliate_api.rb', line 450 def affiliate_controller_get_program_ledger(opts = {}) affiliate_controller_get_program_ledger_with_http_info(opts) nil end |
#affiliate_controller_get_program_ledger_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 |
# File 'lib/solifyn/api/affiliate_api.rb', line 457 def affiliate_controller_get_program_ledger_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_program_ledger ...' end # resource path local_var_path = '/v1/affiliate/program/ledger' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_program_ledger", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_program_ledger\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_get_program_settings(opts = {}) ⇒ nil
501 502 503 504 |
# File 'lib/solifyn/api/affiliate_api.rb', line 501 def affiliate_controller_get_program_settings(opts = {}) affiliate_controller_get_program_settings_with_http_info(opts) nil end |
#affiliate_controller_get_program_settings_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 |
# File 'lib/solifyn/api/affiliate_api.rb', line 508 def affiliate_controller_get_program_settings_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_get_program_settings ...' end # resource path local_var_path = '/v1/affiliate/program/settings' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_get_program_settings", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_get_program_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_join_program(opts = {}) ⇒ nil
552 553 554 555 |
# File 'lib/solifyn/api/affiliate_api.rb', line 552 def affiliate_controller_join_program(opts = {}) affiliate_controller_join_program_with_http_info(opts) nil end |
#affiliate_controller_join_program_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 |
# File 'lib/solifyn/api/affiliate_api.rb', line 559 def affiliate_controller_join_program_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_join_program ...' end # resource path local_var_path = '/v1/affiliate/marketplace/join' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_join_program", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_join_program\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_reject_connection(id, opts = {}) ⇒ nil
604 605 606 607 |
# File 'lib/solifyn/api/affiliate_api.rb', line 604 def affiliate_controller_reject_connection(id, opts = {}) affiliate_controller_reject_connection_with_http_info(id, opts) nil end |
#affiliate_controller_reject_connection_with_http_info(id, opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 |
# File 'lib/solifyn/api/affiliate_api.rb', line 612 def affiliate_controller_reject_connection_with_http_info(id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_reject_connection ...' end # verify the required parameter 'id' is set if @api_client.config.client_side_validation && id.nil? fail ArgumentError, "Missing the required parameter 'id' when calling AffiliateApi.affiliate_controller_reject_connection" end # resource path local_var_path = '/v1/affiliate/program/connections/{id}/reject'.sub('{' + 'id' + '}', CGI.escape(id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_reject_connection", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_reject_connection\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_save_override(opts = {}) ⇒ nil
660 661 662 663 |
# File 'lib/solifyn/api/affiliate_api.rb', line 660 def affiliate_controller_save_override(opts = {}) affiliate_controller_save_override_with_http_info(opts) nil end |
#affiliate_controller_save_override_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 |
# File 'lib/solifyn/api/affiliate_api.rb', line 667 def affiliate_controller_save_override_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_save_override ...' end # resource path local_var_path = '/v1/affiliate/program/override' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_save_override", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_save_override\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#affiliate_controller_save_program_settings(opts = {}) ⇒ nil
711 712 713 714 |
# File 'lib/solifyn/api/affiliate_api.rb', line 711 def affiliate_controller_save_program_settings(opts = {}) affiliate_controller_save_program_settings_with_http_info(opts) nil end |
#affiliate_controller_save_program_settings_with_http_info(opts = {}) ⇒ Array<(nil, Integer, Hash)>
Returns nil, response status code and response headers.
718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 |
# File 'lib/solifyn/api/affiliate_api.rb', line 718 def affiliate_controller_save_program_settings_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AffiliateApi.affiliate_controller_save_program_settings ...' end # resource path local_var_path = '/v1/affiliate/program/settings' # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] # auth_names auth_names = opts[:debug_auth_names] || [] = opts.merge( :operation => :"AffiliateApi.affiliate_controller_save_program_settings", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AffiliateApi#affiliate_controller_save_program_settings\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |