Class: PureCloud::WorkforceManagementApi
- Inherits:
-
Object
- Object
- PureCloud::WorkforceManagementApi
- Defined in:
- lib/purecloud/api/workforce_management_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#get_adherence(user_id, opts = {}) ⇒ Array<UserScheduleAdherence>
Get a list of UserScheduleAdherence records for the requested users.
-
#get_adherence_with_http_info(user_id, opts = {}) ⇒ Array<(Array<UserScheduleAdherence>, Fixnum, Hash)>
Get a list of UserScheduleAdherence records for the requested users.
-
#get_decisions_downloads_download_id(download_id, opts = {}) ⇒ DecisionsDownloadLink
Get decisions download link.
-
#get_decisions_downloads_download_id_with_http_info(download_id, opts = {}) ⇒ Array<(DecisionsDownloadLink, Fixnum, Hash)>
Get decisions download link.
-
#get_managementunits_mu_id_users_user_id_timeoffrequests(mu_id, user_id, opts = {}) ⇒ TimeOffRequestList
Get a list of time off requests for any user.
-
#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id(mu_id, user_id, time_off_request_id, opts = {}) ⇒ TimeOffRequest
Get a time off request by id.
-
#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id_with_http_info(mu_id, user_id, time_off_request_id, opts = {}) ⇒ Array<(TimeOffRequest, Fixnum, Hash)>
Get a time off request by id.
-
#get_managementunits_mu_id_users_user_id_timeoffrequests_with_http_info(mu_id, user_id, opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a list of time off requests for any user.
-
#get_timeoffrequests(opts = {}) ⇒ TimeOffRequestList
Get a list of time off requests for the current user.
-
#get_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) ⇒ TimeOffRequest
Get a time off request for the current user by id.
-
#get_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) ⇒ Array<(TimeOffRequest, Fixnum, Hash)>
Get a time off request for the current user by id.
-
#get_timeoffrequests_with_http_info(opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a list of time off requests for the current user.
-
#initialize(api_client = ApiClient.default) ⇒ WorkforceManagementApi
constructor
A new instance of WorkforceManagementApi.
-
#patch_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) ⇒ nil
Mark a time off request for the current user as read or unread.
-
#patch_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Mark a time off request for the current user as read or unread.
-
#post_decisions_downloads_search(body, opts = {}) ⇒ DecisionsFileMetadataEntityListing
Download decisions files metadata.
-
#post_decisions_downloads_search_with_http_info(body, opts = {}) ⇒ Array<(DecisionsFileMetadataEntityListing, Fixnum, Hash)>
Download decisions files metadata.
-
#post_longtermforecasts(body, opts = {}) ⇒ ForecastCreationCompletion
Create a forecast.
-
#post_longtermforecasts_with_http_info(body, opts = {}) ⇒ Array<(ForecastCreationCompletion, Fixnum, Hash)>
Create a forecast.
-
#post_schedules(opts = {}) ⇒ TimeOffRequestList
Get a schedule for the current user.
-
#post_schedules_with_http_info(opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a schedule for the current user.
Constructor Details
#initialize(api_client = ApiClient.default) ⇒ WorkforceManagementApi
Returns a new instance of WorkforceManagementApi.
23 24 25 |
# File 'lib/purecloud/api/workforce_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/workforce_management_api.rb', line 21 def api_client @api_client end |
Instance Method Details
#get_adherence(user_id, opts = {}) ⇒ Array<UserScheduleAdherence>
Get a list of UserScheduleAdherence records for the requested users
32 33 34 35 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 32 def get_adherence(user_id, opts = {}) data, status_code, headers = get_adherence_with_http_info(user_id, opts) return data end |
#get_adherence_with_http_info(user_id, opts = {}) ⇒ Array<(Array<UserScheduleAdherence>, Fixnum, Hash)>
Get a list of UserScheduleAdherence records for the requested users
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 85 86 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 42 def get_adherence_with_http_info(user_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_adherence ..." end # verify the required parameter 'user_id' is set fail "Missing the required parameter 'user_id' when calling get_adherence" if user_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/adherence".sub('{format}','json') # query parameters query_params = {} query_params[:'userId'] = @api_client.build_collection_param(user_id, :multi) # 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 => 'Array<UserScheduleAdherence>') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_adherence\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_decisions_downloads_download_id(download_id, opts = {}) ⇒ DecisionsDownloadLink
Get decisions download link
94 95 96 97 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 94 def get_decisions_downloads_download_id(download_id, opts = {}) data, status_code, headers = get_decisions_downloads_download_id_with_http_info(download_id, opts) return data end |
#get_decisions_downloads_download_id_with_http_info(download_id, opts = {}) ⇒ Array<(DecisionsDownloadLink, Fixnum, Hash)>
Get decisions download link
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 144 145 146 147 148 149 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 105 def get_decisions_downloads_download_id_with_http_info(download_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_decisions_downloads_download_id ..." end # verify the required parameter 'download_id' is set fail "Missing the required parameter 'download_id' when calling get_decisions_downloads_download_id" if download_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/decisions/downloads/{downloadId}".sub('{format}','json').sub('{' + 'downloadId' + '}', download_id.to_s) # query parameters query_params = {} query_params[:'downloadfilename'] = opts[:'downloadfilename'] if opts[:'downloadfilename'] # 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 => 'DecisionsDownloadLink') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_decisions_downloads_download_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_managementunits_mu_id_users_user_id_timeoffrequests(mu_id, user_id, opts = {}) ⇒ TimeOffRequestList
Get a list of time off requests for any user
158 159 160 161 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 158 def get_managementunits_mu_id_users_user_id_timeoffrequests(mu_id, user_id, opts = {}) data, status_code, headers = get_managementunits_mu_id_users_user_id_timeoffrequests_with_http_info(mu_id, user_id, opts) return data end |
#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id(mu_id, user_id, time_off_request_id, opts = {}) ⇒ TimeOffRequest
Get a time off request by id
226 227 228 229 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 226 def get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id(mu_id, user_id, time_off_request_id, opts = {}) data, status_code, headers = get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id_with_http_info(mu_id, user_id, time_off_request_id, opts) return data end |
#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id_with_http_info(mu_id, user_id, time_off_request_id, opts = {}) ⇒ Array<(TimeOffRequest, Fixnum, Hash)>
Get a time off request by id
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 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 238 def get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id_with_http_info(mu_id, user_id, time_off_request_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id ..." end # verify the required parameter 'mu_id' is set fail "Missing the required parameter 'mu_id' when calling get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id" if mu_id.nil? # verify the required parameter 'user_id' is set fail "Missing the required parameter 'user_id' when calling get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id" if user_id.nil? # verify the required parameter 'time_off_request_id' is set fail "Missing the required parameter 'time_off_request_id' when calling get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id" if time_off_request_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/managementunits/{muId}/users/{userId}/timeoffrequests/{timeOffRequestId}".sub('{format}','json').sub('{' + 'muId' + '}', mu_id.to_s).sub('{' + 'userId' + '}', user_id.to_s).sub('{' + 'timeOffRequestId' + '}', time_off_request_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 => 'TimeOffRequest') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_managementunits_mu_id_users_user_id_timeoffrequests_timeoffrequest_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_managementunits_mu_id_users_user_id_timeoffrequests_with_http_info(mu_id, user_id, opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a list of time off requests for any user
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 205 206 207 208 209 210 211 212 213 214 215 216 217 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 170 def get_managementunits_mu_id_users_user_id_timeoffrequests_with_http_info(mu_id, user_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_managementunits_mu_id_users_user_id_timeoffrequests ..." end # verify the required parameter 'mu_id' is set fail "Missing the required parameter 'mu_id' when calling get_managementunits_mu_id_users_user_id_timeoffrequests" if mu_id.nil? # verify the required parameter 'user_id' is set fail "Missing the required parameter 'user_id' when calling get_managementunits_mu_id_users_user_id_timeoffrequests" if user_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/managementunits/{muId}/users/{userId}/timeoffrequests".sub('{format}','json').sub('{' + 'muId' + '}', mu_id.to_s).sub('{' + 'userId' + '}', user_id.to_s) # query parameters query_params = {} query_params[:'recentlyReviewed'] = opts[:'recently_reviewed'] if opts[:'recently_reviewed'] # 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 => 'TimeOffRequestList') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_managementunits_mu_id_users_user_id_timeoffrequests\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_timeoffrequests(opts = {}) ⇒ TimeOffRequestList
Get a list of time off requests for the current user
294 295 296 297 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 294 def get_timeoffrequests(opts = {}) data, status_code, headers = get_timeoffrequests_with_http_info(opts) return data end |
#get_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) ⇒ TimeOffRequest
Get a time off request for the current user by id
352 353 354 355 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 352 def get_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) data, status_code, headers = get_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts) return data end |
#get_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) ⇒ Array<(TimeOffRequest, Fixnum, Hash)>
Get a time off request for the current user by id
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 396 397 398 399 400 401 402 403 404 405 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 362 def get_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_timeoffrequests_timeoffrequest_id ..." end # verify the required parameter 'time_off_request_id' is set fail "Missing the required parameter 'time_off_request_id' when calling get_timeoffrequests_timeoffrequest_id" if time_off_request_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/timeoffrequests/{timeOffRequestId}".sub('{format}','json').sub('{' + 'timeOffRequestId' + '}', time_off_request_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 => 'TimeOffRequest') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_timeoffrequests_timeoffrequest_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_timeoffrequests_with_http_info(opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a list of time off requests for the current user
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 345 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 304 def get_timeoffrequests_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#get_timeoffrequests ..." end # resource path local_var_path = "/api/v2/workforcemanagement/timeoffrequests".sub('{format}','json') # query parameters query_params = {} query_params[:'recentlyReviewed'] = opts[:'recently_reviewed'] if opts[:'recently_reviewed'] # 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 => 'TimeOffRequestList') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#get_timeoffrequests\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#patch_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) ⇒ nil
Mark a time off request for the current user as read or unread
413 414 415 416 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 413 def patch_timeoffrequests_timeoffrequest_id(time_off_request_id, opts = {}) patch_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts) return nil end |
#patch_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) ⇒ Array<(nil, Fixnum, Hash)>
Mark a time off request for the current user as read or unread
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 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 424 def patch_timeoffrequests_timeoffrequest_id_with_http_info(time_off_request_id, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#patch_timeoffrequests_timeoffrequest_id ..." end # verify the required parameter 'time_off_request_id' is set fail "Missing the required parameter 'time_off_request_id' when calling patch_timeoffrequests_timeoffrequest_id" if time_off_request_id.nil? # resource path local_var_path = "/api/v2/workforcemanagement/timeoffrequests/{timeOffRequestId}".sub('{format}','json').sub('{' + 'timeOffRequestId' + '}', time_off_request_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(:PATCH, 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: WorkforceManagementApi#patch_timeoffrequests_timeoffrequest_id\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_decisions_downloads_search(body, opts = {}) ⇒ DecisionsFileMetadataEntityListing
Download decisions files metadata
473 474 475 476 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 473 def post_decisions_downloads_search(body, opts = {}) data, status_code, headers = post_decisions_downloads_search_with_http_info(body, opts) return data end |
#post_decisions_downloads_search_with_http_info(body, opts = {}) ⇒ Array<(DecisionsFileMetadataEntityListing, Fixnum, Hash)>
Download decisions files metadata
483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 483 def post_decisions_downloads_search_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#post_decisions_downloads_search ..." end # verify the required parameter 'body' is set fail "Missing the required parameter 'body' when calling post_decisions_downloads_search" if body.nil? # resource path local_var_path = "/api/v2/workforcemanagement/decisions/downloads/search".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(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 => 'DecisionsFileMetadataEntityListing') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#post_decisions_downloads_search\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_longtermforecasts(body, opts = {}) ⇒ ForecastCreationCompletion
Create a forecast
533 534 535 536 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 533 def post_longtermforecasts(body, opts = {}) data, status_code, headers = post_longtermforecasts_with_http_info(body, opts) return data end |
#post_longtermforecasts_with_http_info(body, opts = {}) ⇒ Array<(ForecastCreationCompletion, Fixnum, Hash)>
Create a forecast
543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 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 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 543 def post_longtermforecasts_with_http_info(body, opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#post_longtermforecasts ..." end # verify the required parameter 'body' is set fail "Missing the required parameter 'body' when calling post_longtermforecasts" if body.nil? # resource path local_var_path = "/api/v2/workforcemanagement/longtermforecasts".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(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 => 'ForecastCreationCompletion') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#post_longtermforecasts\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#post_schedules(opts = {}) ⇒ TimeOffRequestList
Get a schedule for the current user
593 594 595 596 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 593 def post_schedules(opts = {}) data, status_code, headers = post_schedules_with_http_info(opts) return data end |
#post_schedules_with_http_info(opts = {}) ⇒ Array<(TimeOffRequestList, Fixnum, Hash)>
Get a schedule for the current user
603 604 605 606 607 608 609 610 611 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 |
# File 'lib/purecloud/api/workforce_management_api.rb', line 603 def post_schedules_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug "Calling API: WorkforceManagementApi#post_schedules ..." end # resource path local_var_path = "/api/v2/workforcemanagement/schedules".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 => 'TimeOffRequestList') if @api_client.config.debugging @api_client.config.logger.debug "API called: WorkforceManagementApi#post_schedules\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |