Class: PureCloud::ResponseManagementApi
- Inherits:
-
Object
- Object
- PureCloud::ResponseManagementApi
- Defined in:
- lib/purecloud/api/response_management_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#delete_libraries_library_id(library_id, opts = {}) ⇒ nil
Delete an existing response library.
-
#delete_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete an existing response library.
-
#delete_responses_response_id(response_id, opts = {}) ⇒ nil
Delete an existing response.
-
#delete_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete an existing response.
-
#get_libraries(opts = {}) ⇒ LibraryEntityListing
Gets a list of existing response libraries.
-
#get_libraries_library_id(library_id, opts = {}) ⇒ Library
Get details about an existing response library.
-
#get_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Get details about an existing response library.
-
#get_libraries_with_http_info(opts = {}) ⇒ Array<(LibraryEntityListing, Fixnum, Hash)>
Gets a list of existing response libraries.
-
#get_responses(library_id, opts = {}) ⇒ ResponseEntityListing
Gets a list of existing responses.
-
#get_responses_response_id(response_id, opts = {}) ⇒ Response
Get details about an existing response.
-
#get_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Get details about an existing response.
-
#get_responses_with_http_info(library_id, opts = {}) ⇒ Array<(ResponseEntityListing, Fixnum, Hash)>
Gets a list of existing responses.
-
#initialize(api_client = ApiClient.default) ⇒ ResponseManagementApi
constructor
A new instance of ResponseManagementApi.
-
#post_libraries(opts = {}) ⇒ Library
Create a response library.
-
#post_libraries_with_http_info(opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Create a response library.
-
#post_responses(opts = {}) ⇒ Response
Create a response.
-
#post_responses_query(opts = {}) ⇒ ResponseQueryResults
Query responses.
-
#post_responses_query_with_http_info(opts = {}) ⇒ Array<(ResponseQueryResults, Fixnum, Hash)>
Query responses.
-
#post_responses_with_http_info(opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Create a response.
-
#put_libraries_library_id(library_id, opts = {}) ⇒ Library
Update an existing response library.
-
#put_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Update an existing response library.
-
#put_responses_response_id(response_id, opts = {}) ⇒ Response
Update an existing response.
-
#put_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Update an existing response.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ ResponseManagementApi
Returns a new instance of ResponseManagementApi.
23 24 25 |
# File 'lib/purecloud/api/response_management_api.rb', line 23 def initialize(api_client = ApiClient.default) @api_client = api_client end |
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
21 22 23 |
# File 'lib/purecloud/api/response_management_api.rb', line 21 def api_client @api_client end |
Instance Method Details
#delete_libraries_library_id(library_id, opts = {}) ⇒ nil
Delete an existing response library. This will remove any responses associated with the library.
32 33 34 35 |
# File 'lib/purecloud/api/response_management_api.rb', line 32 def delete_libraries_library_id(library_id, opts = {}) delete_libraries_library_id_with_http_info(library_id, opts) return nil end |
#delete_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete an existing response library. This will remove any responses associated with the library.
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 78 79 80 81 82 83 84 |
# File 'lib/purecloud/api/response_management_api.rb', line 42 def delete_libraries_library_id_with_http_info(library_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#delete_libraries_library_id ..." end # verify the required parameter 'library_id' is set fail "Missing the required parameter 'library_id' when calling delete_libraries_library_id" if library_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/libraries/{libraryId}".sub('{format}','json').sub('{' + 'libraryId' + '}', library_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#delete_libraries_library_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_responses_response_id(response_id, opts = {}) ⇒ nil
Delete an existing response. This will remove the response from any libraries associated with it.
91 92 93 94 |
# File 'lib/purecloud/api/response_management_api.rb', line 91 def delete_responses_response_id(response_id, opts = {}) delete_responses_response_id_with_http_info(response_id, opts) return nil end |
#delete_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Delete an existing response. This will remove the response from any libraries associated with it.
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 135 136 137 138 139 140 141 142 143 |
# File 'lib/purecloud/api/response_management_api.rb', line 101 def delete_responses_response_id_with_http_info(response_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#delete_responses_response_id ..." end # verify the required parameter 'response_id' is set fail "Missing the required parameter 'response_id' when calling delete_responses_response_id" if response_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/responses/{responseId}".sub('{format}','json').sub('{' + 'responseId' + '}', response_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names) if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#delete_responses_response_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_libraries(opts = {}) ⇒ LibraryEntityListing
Gets a list of existing response libraries.
151 152 153 154 |
# File 'lib/purecloud/api/response_management_api.rb', line 151 def get_libraries(opts = {}) data, status_code, headers = get_libraries_with_http_info(opts) return data end |
#get_libraries_library_id(library_id, opts = {}) ⇒ Library
Get details about an existing response library.
211 212 213 214 |
# File 'lib/purecloud/api/response_management_api.rb', line 211 def get_libraries_library_id(library_id, opts = {}) data, status_code, headers = get_libraries_library_id_with_http_info(library_id, opts) return data end |
#get_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Get details about an existing response library.
221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 |
# File 'lib/purecloud/api/response_management_api.rb', line 221 def get_libraries_library_id_with_http_info(library_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#get_libraries_library_id ..." end # verify the required parameter 'library_id' is set fail "Missing the required parameter 'library_id' when calling get_libraries_library_id" if library_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/libraries/{libraryId}".sub('{format}','json').sub('{' + 'libraryId' + '}', library_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Library') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#get_libraries_library_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_libraries_with_http_info(opts = {}) ⇒ Array<(LibraryEntityListing, Fixnum, Hash)>
Gets a list of existing response libraries.
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 192 193 194 195 196 197 198 199 200 201 202 203 204 |
# File 'lib/purecloud/api/response_management_api.rb', line 162 def get_libraries_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#get_libraries ..." end # resource path local_var_path = "/api/v2/responsemanagement/libraries".sub('{format}','json') # query parameters query_params = {} query_params[:'pageNumber'] = opts[:'page_number'] if opts[:'page_number'] query_params[:'pageSize'] = opts[:'page_size'] if opts[:'page_size'] # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'LibraryEntityListing') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#get_libraries\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_responses(library_id, opts = {}) ⇒ ResponseEntityListing
Gets a list of existing responses.
273 274 275 276 |
# File 'lib/purecloud/api/response_management_api.rb', line 273 def get_responses(library_id, opts = {}) data, status_code, headers = get_responses_with_http_info(library_id, opts) return data end |
#get_responses_response_id(response_id, opts = {}) ⇒ Response
Get details about an existing response.
338 339 340 341 |
# File 'lib/purecloud/api/response_management_api.rb', line 338 def get_responses_response_id(response_id, opts = {}) data, status_code, headers = get_responses_response_id_with_http_info(response_id, opts) return data end |
#get_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Get details about an existing response.
348 349 350 351 352 353 354 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 |
# File 'lib/purecloud/api/response_management_api.rb', line 348 def get_responses_response_id_with_http_info(response_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#get_responses_response_id ..." end # verify the required parameter 'response_id' is set fail "Missing the required parameter 'response_id' when calling get_responses_response_id" if response_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/responses/{responseId}".sub('{format}','json').sub('{' + 'responseId' + '}', response_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Response') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#get_responses_response_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_responses_with_http_info(library_id, opts = {}) ⇒ Array<(ResponseEntityListing, Fixnum, Hash)>
Gets a list of existing responses.
285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 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 |
# File 'lib/purecloud/api/response_management_api.rb', line 285 def get_responses_with_http_info(library_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#get_responses ..." end # verify the required parameter 'library_id' is set fail "Missing the required parameter 'library_id' when calling get_responses" if library_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/responses".sub('{format}','json') # query parameters query_params = {} query_params[:'libraryId'] = library_id query_params[:'pageNumber'] = opts[:'page_number'] if opts[:'page_number'] query_params[:'pageSize'] = opts[:'page_size'] if opts[:'page_size'] # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = nil auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:GET, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ResponseEntityListing') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#get_responses\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_libraries(opts = {}) ⇒ Library
Create a response library.
398 399 400 401 |
# File 'lib/purecloud/api/response_management_api.rb', line 398 def post_libraries(opts = {}) data, status_code, headers = post_libraries_with_http_info(opts) return data end |
#post_libraries_with_http_info(opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Create a response library.
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 447 448 |
# File 'lib/purecloud/api/response_management_api.rb', line 408 def post_libraries_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#post_libraries ..." end # resource path local_var_path = "/api/v2/responsemanagement/libraries".sub('{format}','json') # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'body']) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Library') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#post_libraries\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_responses(opts = {}) ⇒ Response
Create a response.
455 456 457 458 |
# File 'lib/purecloud/api/response_management_api.rb', line 455 def post_responses(opts = {}) data, status_code, headers = post_responses_with_http_info(opts) return data end |
#post_responses_query(opts = {}) ⇒ ResponseQueryResults
Query responses
512 513 514 515 |
# File 'lib/purecloud/api/response_management_api.rb', line 512 def post_responses_query(opts = {}) data, status_code, headers = post_responses_query_with_http_info(opts) return data end |
#post_responses_query_with_http_info(opts = {}) ⇒ Array<(ResponseQueryResults, Fixnum, Hash)>
Query responses
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 549 550 551 552 553 554 555 556 557 558 559 560 561 562 |
# File 'lib/purecloud/api/response_management_api.rb', line 522 def post_responses_query_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#post_responses_query ..." end # resource path local_var_path = "/api/v2/responsemanagement/responses/query".sub('{format}','json') # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'body']) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'ResponseQueryResults') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#post_responses_query\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_responses_with_http_info(opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Create a response.
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 498 499 500 501 502 503 504 505 |
# File 'lib/purecloud/api/response_management_api.rb', line 465 def post_responses_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#post_responses ..." end # resource path local_var_path = "/api/v2/responsemanagement/responses".sub('{format}','json') # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'body']) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:POST, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Response') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#post_responses\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#put_libraries_library_id(library_id, opts = {}) ⇒ Library
Update an existing response library. Fields that can be updated: name. The most recent version is required for updates.
570 571 572 573 |
# File 'lib/purecloud/api/response_management_api.rb', line 570 def put_libraries_library_id(library_id, opts = {}) data, status_code, headers = put_libraries_library_id_with_http_info(library_id, opts) return data end |
#put_libraries_library_id_with_http_info(library_id, opts = {}) ⇒ Array<(Library, Fixnum, Hash)>
Update an existing response library. Fields that can be updated: name. The most recent version is required for updates.
581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 |
# File 'lib/purecloud/api/response_management_api.rb', line 581 def put_libraries_library_id_with_http_info(library_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#put_libraries_library_id ..." end # verify the required parameter 'library_id' is set fail "Missing the required parameter 'library_id' when calling put_libraries_library_id" if library_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/libraries/{libraryId}".sub('{format}','json').sub('{' + 'libraryId' + '}', library_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'body']) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Library') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#put_libraries_library_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#put_responses_response_id(response_id, opts = {}) ⇒ Response
Update an existing response. Fields that can be updated: name, libraries, and texts. The most recent version is required for updates.
632 633 634 635 |
# File 'lib/purecloud/api/response_management_api.rb', line 632 def put_responses_response_id(response_id, opts = {}) data, status_code, headers = put_responses_response_id_with_http_info(response_id, opts) return data end |
#put_responses_response_id_with_http_info(response_id, opts = {}) ⇒ Array<(Response, Fixnum, Hash)>
Update an existing response. Fields that can be updated: name, libraries, and texts. The most recent version is required for updates.
643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 |
# File 'lib/purecloud/api/response_management_api.rb', line 643 def put_responses_response_id_with_http_info(response_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: ResponseManagementApi#put_responses_response_id ..." end # verify the required parameter 'response_id' is set fail "Missing the required parameter 'response_id' when calling put_responses_response_id" if response_id.nil? # resource path local_var_path = "/api/v2/responsemanagement/responses/{responseId}".sub('{format}','json').sub('{' + 'responseId' + '}', response_id.to_s) # query parameters query_params = {} # header parameters header_params = {} # HTTP header 'Accept' (if needed) _header_accept = ['application/json'] _header_accept_result = @api_client.select_header_accept(_header_accept) and header_params['Accept'] = _header_accept_result # HTTP header 'Content-Type' _header_content_type = ['application/json'] header_params['Content-Type'] = @api_client.select_header_content_type(_header_content_type) # form parameters form_params = {} # http body (model) post_body = @api_client.object_to_http_body(opts[:'body']) auth_names = ['PureCloud Auth'] data, status_code, headers = @api_client.call_api(:PUT, local_var_path, :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => 'Response') if @api_client.config.debugging @api_client.config.logger.debug "API called: ResponseManagementApi#put_responses_response_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |