Module: Five9Tools::Get

Included in:
Admin::Client
Defined in:
lib/five9tools/admin/get.rb

Class Method Summary collapse

Class Method Details

.get_agent_group(params = {}) ⇒ Object

Api request for getAgentGroup.

Examples:

Accepts the following parameters as a hash:

{"getAgentGroup"=>{"groupName"=>"?"}}


878
879
880
881
882
883
884
885
886
887
888
889
# File 'lib/five9tools/admin/get.rb', line 878

def get_agent_group(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_agent_group, message: params)
      res[:get_agent_group_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_agent_groups(params = {}) ⇒ Object

Api request for getAgentGroups.

Examples:

Accepts the following parameters as a hash:

{"getAgentGroups"=>{"groupNamePattern"=>"?"}}


300
301
302
303
304
305
306
307
308
309
310
311
# File 'lib/five9tools/admin/get.rb', line 300

def get_agent_groups(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_agent_groups, message: params)
      res[:get_agent_groups_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_api_versions(params = {}) ⇒ Object

Api request for getApiVersions.

Examples:

Accepts the following parameters as a hash:

{"getApiVersions"=>nil}


793
794
795
796
797
798
799
800
801
802
803
804
# File 'lib/five9tools/admin/get.rb', line 793

def get_api_versions(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_api_versions, message: params)
      res[:get_api_versions_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_autodial_campaign(params = {}) ⇒ Object

Api request for getAutodialCampaign.

Examples:

Accepts the following parameters as a hash:

{"getAutodialCampaign"=>{"campaignName"=>"?"}}


249
250
251
252
253
254
255
256
257
258
259
260
# File 'lib/five9tools/admin/get.rb', line 249

def get_autodial_campaign(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_autodial_campaign, message: params)
      res[:get_autodial_campaign_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_available_locales(params = {}) ⇒ Object

Api request for getAvailableLocales.

Examples:

Accepts the following parameters as a hash:

{"getAvailableLocales"=>nil}


827
828
829
830
831
832
833
834
835
836
837
838
# File 'lib/five9tools/admin/get.rb', line 827

def get_available_locales(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_available_locales, message: params)
      res[:get_available_locales_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_call_counters_state(params = {}) ⇒ Object

Api request for getCallCountersState.

Examples:

Accepts the following parameters as a hash:

{"getCallCountersState"=>nil}


691
692
693
694
695
696
697
698
699
700
701
702
# File 'lib/five9tools/admin/get.rb', line 691

def get_call_counters_state(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_call_counters_state, message: params)
      res[:get_call_counters_state_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_call_variable_groups(params = {}) ⇒ Object

Api request for getCallVariableGroups.

Examples:

Accepts the following parameters as a hash:

{"getCallVariableGroups"=>{"namePattern"=>"?"}}


912
913
914
915
916
917
918
919
920
921
922
923
# File 'lib/five9tools/admin/get.rb', line 912

def get_call_variable_groups(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_call_variable_groups, message: params)
      res[:get_call_variable_groups_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_call_variables(params = {}) ⇒ Object

Api request for getCallVariables.

Examples:

Accepts the following parameters as a hash:

{"getCallVariables"=>{"namePattern"=>"?", "groupName"=>"?"}}


283
284
285
286
287
288
289
290
291
292
293
294
# File 'lib/five9tools/admin/get.rb', line 283

def get_call_variables(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_call_variables, message: params)
      res[:get_call_variables_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_dnis_list(params = {}) ⇒ Object

Api request for getCampaignDNISList.

Examples:

Accepts the following parameters as a hash:

{"getCampaignDNISList"=>{"campaignName"=>"?"}}


742
743
744
745
746
747
748
749
750
751
752
753
# File 'lib/five9tools/admin/get.rb', line 742

def get_campaign_dnis_list(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_dnis_list, message: params)
      res[:get_campaign_dnis_list_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_profile_dispositions(params = {}) ⇒ Object

Api request for getCampaignProfileDispositions.

Examples:

Accepts the following parameters as a hash:

{"getCampaignProfileDispositions"=>{"profileName"=>"?"}}


419
420
421
422
423
424
425
426
427
428
429
430
# File 'lib/five9tools/admin/get.rb', line 419

def get_campaign_profile_dispositions(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_profile_dispositions, message: params)
      res[:get_campaign_profile_dispositions_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_profile_filter(params = {}) ⇒ Object

Api request for getCampaignProfileFilter.

Examples:

Accepts the following parameters as a hash:

{"getCampaignProfileFilter"=>{"profileName"=>"?"}}


130
131
132
133
134
135
136
137
138
139
140
141
# File 'lib/five9tools/admin/get.rb', line 130

def get_campaign_profile_filter(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_profile_filter, message: params)
      res[:get_campaign_profile_filter_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_profiles(params = {}) ⇒ Object

Api request for getCampaignProfiles.

Examples:

Accepts the following parameters as a hash:

{"getCampaignProfiles"=>{"namePattern"=>"?"}}


28
29
30
31
32
33
34
35
36
37
38
39
# File 'lib/five9tools/admin/get.rb', line 28

def get_campaign_profiles(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_profiles, message: params)
      res[:get_campaign_profiles_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_state(params = {}) ⇒ Object

Api request for getCampaignState.

Examples:

Accepts the following parameters as a hash:

{"getCampaignState"=>{"campaignName"=>"?", "waitUntilChange"=>"?"}}


11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/five9tools/admin/get.rb', line 11

def get_campaign_state(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_state, message: params)
      res[:get_campaign_state_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaign_strategies(params = {}) ⇒ Object

Api request for getCampaignStrategies.

Examples:

Accepts the following parameters as a hash:

{"getCampaignStrategies"=>{"campaignName"=>"?"}}


640
641
642
643
644
645
646
647
648
649
650
651
# File 'lib/five9tools/admin/get.rb', line 640

def get_campaign_strategies(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaign_strategies, message: params)
      res[:get_campaign_strategies_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_campaigns(params = {}) ⇒ Object

Api request for getCampaigns.

Examples:

Accepts the following parameters as a hash:

{"getCampaigns"=>{"campaignNamePattern"=>"?", "campaignType"=>"?"}}


538
539
540
541
542
543
544
545
546
547
548
549
# File 'lib/five9tools/admin/get.rb', line 538

def get_campaigns(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_campaigns, message: params)
      res[:get_campaigns_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_configuration_translations(params = {}) ⇒ Object

Api request for getConfigurationTranslations.

Examples:

Accepts the following parameters as a hash:

{"getConfigurationTranslations"=>{"localeName"=>"?"}}


232
233
234
235
236
237
238
239
240
241
242
243
# File 'lib/five9tools/admin/get.rb', line 232

def get_configuration_translations(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_configuration_translations, message: params)
      res[:get_configuration_translations_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_contact_fields(params = {}) ⇒ Object

Api request for getContactFields.

Examples:

Accepts the following parameters as a hash:

{"getContactFields"=>{"namePattern"=>"?"}}


436
437
438
439
440
441
442
443
444
445
446
447
# File 'lib/five9tools/admin/get.rb', line 436

def get_contact_fields(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_contact_fields, message: params)
      res[:get_contact_fields_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_contact_records(params = {}) ⇒ Object

Api request for getContactRecords.

Examples:

Accepts the following parameters as a hash:

{"getContactRecords"=>{"lookupCriteria"=>{"contactIdField"=>"?", "criteria"=>{"field"=>"?", "value"=>"?"}}}}


895
896
897
898
899
900
901
902
903
904
905
906
# File 'lib/five9tools/admin/get.rb', line 895

def get_contact_records(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_contact_records, message: params)
      res[:get_contact_records_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_crm_import_result(params = {}) ⇒ Object

Api request for getCrmImportResult.

Examples:

Accepts the following parameters as a hash:

{"getCrmImportResult"=>{"identifier"=>{"identifier"=>"?"}}}


266
267
268
269
270
271
272
273
274
275
276
277
# File 'lib/five9tools/admin/get.rb', line 266

def get_crm_import_result(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_crm_import_result, message: params)
      res[:get_crm_import_result_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_dialing_rules(params = {}) ⇒ Object

Api request for getDialingRules.

Examples:

Accepts the following parameters as a hash:

{"getDialingRules"=>{"namePattern"=>"?"}}


198
199
200
201
202
203
204
205
206
207
208
209
# File 'lib/five9tools/admin/get.rb', line 198

def get_dialing_rules(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_dialing_rules, message: params)
      res[:get_dialing_rules_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_disposition(params = {}) ⇒ Object

Api request for getDisposition.

Examples:

Accepts the following parameters as a hash:

{"getDisposition"=>{"dispositionName"=>"?"}}


147
148
149
150
151
152
153
154
155
156
157
158
# File 'lib/five9tools/admin/get.rb', line 147

def get_disposition(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_disposition, message: params)
      res[:get_disposition_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_dispositions(params = {}) ⇒ Object

Api request for getDispositions.

Examples:

Accepts the following parameters as a hash:

{"getDispositions"=>{"dispositionNamePattern"=>"?"}}


215
216
217
218
219
220
221
222
223
224
225
226
# File 'lib/five9tools/admin/get.rb', line 215

def get_dispositions(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_dispositions, message: params)
      res[:get_dispositions_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_dispositions_import_result(params = {}) ⇒ Object

Api request for getDispositionsImportResult.

Examples:

Accepts the following parameters as a hash:

{"getDispositionsImportResult"=>{"identifier"=>{"identifier"=>"?"}}}


555
556
557
558
559
560
561
562
563
564
565
566
# File 'lib/five9tools/admin/get.rb', line 555

def get_dispositions_import_result(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_dispositions_import_result, message: params)
      res[:get_dispositions_import_result_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_dnis_list(params = {}) ⇒ Object

Api request for getDNISList.

Examples:

Accepts the following parameters as a hash:

{"getDNISList"=>{"selectUnassigned"=>"?"}}


606
607
608
609
610
611
612
613
614
615
616
617
# File 'lib/five9tools/admin/get.rb', line 606

def get_dnis_list(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_dnis_list, message: params)
      res[:get_dnis_list_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_inbound_campaign(params = {}) ⇒ Object

Api request for getInboundCampaign.

Examples:

Accepts the following parameters as a hash:

{"getInboundCampaign"=>{"campaignName"=>"?"}}


317
318
319
320
321
322
323
324
325
326
327
328
# File 'lib/five9tools/admin/get.rb', line 317

def get_inbound_campaign(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_inbound_campaign, message: params)
      res[:get_inbound_campaign_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_ivr_icons(params = {}) ⇒ Object

Api request for getIvrIcons.

Examples:

Accepts the following parameters as a hash:

{"getIvrIcons"=>{"ivrScriptName"=>"?"}}


674
675
676
677
678
679
680
681
682
683
684
685
# File 'lib/five9tools/admin/get.rb', line 674

def get_ivr_icons(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_ivr_icons, message: params)
      res[:get_ivr_icons_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_ivr_script_ownership(params = {}) ⇒ Object

Api request for getIvrScriptOwnership.

Examples:

Accepts the following parameters as a hash:

{"getIvrScriptOwnership"=>{"ivrScriptName"=>"?"}}


62
63
64
65
66
67
68
69
70
71
72
73
# File 'lib/five9tools/admin/get.rb', line 62

def get_ivr_script_ownership(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_ivr_script_ownership, message: params)
      res[:get_ivr_script_ownership_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_ivr_scripts(params = {}) ⇒ Object

Api request for getIVRScripts.

Examples:

Accepts the following parameters as a hash:

{"getIVRScripts"=>{"namePattern"=>"?"}}


708
709
710
711
712
713
714
715
716
717
718
719
# File 'lib/five9tools/admin/get.rb', line 708

def get_ivr_scripts(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_ivr_scripts, message: params)
      res[:get_ivr_scripts_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_list_import_result(params = {}) ⇒ Object

Api request for getListImportResult.

Examples:

Accepts the following parameters as a hash:

{"getListImportResult"=>{"identifier"=>{"identifier"=>"?"}}}


776
777
778
779
780
781
782
783
784
785
786
787
# File 'lib/five9tools/admin/get.rb', line 776

def get_list_import_result(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_list_import_result, message: params)
      res[:get_list_import_result_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_lists_for_campaign(params = {}) ⇒ Object

Api request for getListsForCampaign.

Examples:

Accepts the following parameters as a hash:

{"getListsForCampaign"=>{"campaignName"=>"?"}}


623
624
625
626
627
628
629
630
631
632
633
634
# File 'lib/five9tools/admin/get.rb', line 623

def get_lists_for_campaign(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_lists_for_campaign, message: params)
      res[:get_lists_for_campaign_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_lists_info(params = {}) ⇒ Object

Api request for getListsInfo.

Examples:

Accepts the following parameters as a hash:

{"getListsInfo"=>{"listNamePattern"=>"?"}}


351
352
353
354
355
356
357
358
359
360
361
362
# File 'lib/five9tools/admin/get.rb', line 351

def get_lists_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_lists_info, message: params)
      res[:get_lists_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_locale(params = {}) ⇒ Object

Api request for getLocale.

Examples:

Accepts the following parameters as a hash:

{"getLocale"=>nil}


810
811
812
813
814
815
816
817
818
819
820
821
# File 'lib/five9tools/admin/get.rb', line 810

def get_locale(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_locale, message: params)
      res[:get_locale_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_outbound_campaign(params = {}) ⇒ Object

Api request for getOutboundCampaign.

Examples:

Accepts the following parameters as a hash:

{"getOutboundCampaign"=>{"campaignName"=>"?"}}


487
488
489
490
491
492
493
494
495
496
497
498
# File 'lib/five9tools/admin/get.rb', line 487

def get_outbound_campaign(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_outbound_campaign, message: params)
      res[:get_outbound_campaign_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_prompt(params = {}) ⇒ Object

Api request for getPrompt.

Examples:

Accepts the following parameters as a hash:

{"getPrompt"=>{"promptName"=>"?"}}


96
97
98
99
100
101
102
103
104
105
106
107
# File 'lib/five9tools/admin/get.rb', line 96

def get_prompt(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_prompt, message: params)
      res[:get_prompt_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_prompts(params = {}) ⇒ Object

Api request for getPrompts.

Examples:

Accepts the following parameters as a hash:

{"getPrompts"=>nil}


861
862
863
864
865
866
867
868
869
870
871
872
# File 'lib/five9tools/admin/get.rb', line 861

def get_prompts(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_prompts, message: params)
      res[:get_prompts_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_reason_code(params = {}) ⇒ Object

Api request for getReasonCode.

Examples:

Accepts the following parameters as a hash:

{"getReasonCode"=>{"reasonCodeName"=>"?"}}


521
522
523
524
525
526
527
528
529
530
531
532
# File 'lib/five9tools/admin/get.rb', line 521

def get_reason_code(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_reason_code, message: params)
      res[:get_reason_code_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_reason_code_by_type(params = {}) ⇒ Object

Api request for getReasonCodeByType.

Examples:

Accepts the following parameters as a hash:

{"getReasonCodeByType"=>{"reasonCodeName"=>"?", "type"=>"?"}}


572
573
574
575
576
577
578
579
580
581
582
583
# File 'lib/five9tools/admin/get.rb', line 572

def get_reason_code_by_type(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_reason_code_by_type, message: params)
      res[:get_reason_code_by_type_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_report_result(params = {}) ⇒ Object

Api request for getReportResult.

Examples:

Accepts the following parameters as a hash:

{"getReportResult"=>{"identifier"=>"?"}}


929
930
931
932
933
934
935
936
937
938
939
940
# File 'lib/five9tools/admin/get.rb', line 929

def get_report_result(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_report_result, message: params)
      res[:get_report_result_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_report_result_csv(params = {}) ⇒ Object

Api request for getReportResultCsv.

Examples:

Accepts the following parameters as a hash:

{"getReportResultCsv"=>{"identifier"=>"?"}}


725
726
727
728
729
730
731
732
733
734
735
736
# File 'lib/five9tools/admin/get.rb', line 725

def get_report_result_csv(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_report_result_csv, message: params)
      res[:get_report_result_csv_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skill(params = {}) ⇒ Object

Api request for getSkill.

Examples:

Accepts the following parameters as a hash:

{"getSkill"=>{"skillName"=>"?"}}


79
80
81
82
83
84
85
86
87
88
89
90
# File 'lib/five9tools/admin/get.rb', line 79

def get_skill(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skill, message: params)
      res[:get_skill_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skill_audio_files(params = {}) ⇒ Object

Api request for getSkillAudioFiles.

Examples:

Accepts the following parameters as a hash:

{"getSkillAudioFiles"=>{"skillName"=>"?"}}


385
386
387
388
389
390
391
392
393
394
395
396
# File 'lib/five9tools/admin/get.rb', line 385

def get_skill_audio_files(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skill_audio_files, message: params)
      res[:get_skill_audio_files_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skill_info(params = {}) ⇒ Object

Api request for getSkillInfo.

Examples:

Accepts the following parameters as a hash:

{"getSkillInfo"=>{"skillName"=>"?"}}


589
590
591
592
593
594
595
596
597
598
599
600
# File 'lib/five9tools/admin/get.rb', line 589

def get_skill_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skill_info, message: params)
      res[:get_skill_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skill_voicemail_greeting(params = {}) ⇒ Object

Api request for getSkillVoicemailGreeting.

Examples:

Accepts the following parameters as a hash:

{"getSkillVoicemailGreeting"=>{"skillName"=>"?"}}


334
335
336
337
338
339
340
341
342
343
344
345
# File 'lib/five9tools/admin/get.rb', line 334

def get_skill_voicemail_greeting(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skill_voicemail_greeting, message: params)
      res[:get_skill_voicemail_greeting_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skills(params = {}) ⇒ Object

Api request for getSkills.

Examples:

Accepts the following parameters as a hash:

{"getSkills"=>{"skillNamePattern"=>"?"}}


759
760
761
762
763
764
765
766
767
768
769
770
# File 'lib/five9tools/admin/get.rb', line 759

def get_skills(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skills, message: params)
      res[:get_skills_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_skills_info(params = {}) ⇒ Object

Api request for getSkillsInfo.

Examples:

Accepts the following parameters as a hash:

{"getSkillsInfo"=>{"skillNamePattern"=>"?"}}


453
454
455
456
457
458
459
460
461
462
463
464
# File 'lib/five9tools/admin/get.rb', line 453

def get_skills_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_skills_info, message: params)
      res[:get_skills_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_speed_dial_numbers(params = {}) ⇒ Object

Api request for getSpeedDialNumbers.

Examples:

Accepts the following parameters as a hash:

{"getSpeedDialNumbers"=>nil}


844
845
846
847
848
849
850
851
852
853
854
855
# File 'lib/five9tools/admin/get.rb', line 844

def get_speed_dial_numbers(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_speed_dial_numbers, message: params)
      res[:get_speed_dial_numbers_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_user_general_info(params = {}) ⇒ Object

Api request for getUserGeneralInfo.

Examples:

Accepts the following parameters as a hash:

{"getUserGeneralInfo"=>{"userName"=>"?"}}


657
658
659
660
661
662
663
664
665
666
667
668
# File 'lib/five9tools/admin/get.rb', line 657

def get_user_general_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_user_general_info, message: params)
      res[:get_user_general_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_user_info(params = {}) ⇒ Object

Api request for getUserInfo.

Examples:

Accepts the following parameters as a hash:

{"getUserInfo"=>{"userName"=>"?"}}


164
165
166
167
168
169
170
171
172
173
174
175
# File 'lib/five9tools/admin/get.rb', line 164

def (params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_user_info, message: params)
      res[:get_user_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_user_profile(params = {}) ⇒ Object

Api request for getUserProfile.

Examples:

Accepts the following parameters as a hash:

{"getUserProfile"=>{"userProfileName"=>"?"}}


181
182
183
184
185
186
187
188
189
190
191
192
# File 'lib/five9tools/admin/get.rb', line 181

def (params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_user_profile, message: params)
      res[:get_user_profile_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_user_profiles(params = {}) ⇒ Object

Api request for getUserProfiles.

Examples:

Accepts the following parameters as a hash:

{"getUserProfiles"=>{"userProfileNamePatern"=>"?"}}


368
369
370
371
372
373
374
375
376
377
378
379
# File 'lib/five9tools/admin/get.rb', line 368

def get_user_profiles(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_user_profiles, message: params)
      res[:get_user_profiles_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_user_voicemail_greeting(params = {}) ⇒ Object

Api request for getUserVoicemailGreeting.

Examples:

Accepts the following parameters as a hash:

{"getUserVoicemailGreeting"=>{"userName"=>"?"}}


402
403
404
405
406
407
408
409
410
411
412
413
# File 'lib/five9tools/admin/get.rb', line 402

def get_user_voicemail_greeting(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_user_voicemail_greeting, message: params)
      res[:get_user_voicemail_greeting_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_users_general_info(params = {}) ⇒ Object

Api request for getUsersGeneralInfo.

Examples:

Accepts the following parameters as a hash:

{"getUsersGeneralInfo"=>{"userNamePattern"=>"?"}}


113
114
115
116
117
118
119
120
121
122
123
124
# File 'lib/five9tools/admin/get.rb', line 113

def get_users_general_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_users_general_info, message: params)
      res[:get_users_general_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_users_info(params = {}) ⇒ Object

Api request for getUsersInfo.

Examples:

Accepts the following parameters as a hash:

{"getUsersInfo"=>{"userNamePattern"=>"?"}}


45
46
47
48
49
50
51
52
53
54
55
56
# File 'lib/five9tools/admin/get.rb', line 45

def get_users_info(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_users_info, message: params)
      res[:get_users_info_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_vcc_configuration(params = {}) ⇒ Object

Api request for getVCCConfiguration.

Examples:

Accepts the following parameters as a hash:

{"getVCCConfiguration"=>nil}


470
471
472
473
474
475
476
477
478
479
480
481
# File 'lib/five9tools/admin/get.rb', line 470

def get_vcc_configuration(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_vcc_configuration, message: params)
      res[:get_vcc_configuration_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end

.get_web_connectors(params = {}) ⇒ Object

Api request for getWebConnectors.

Examples:

Accepts the following parameters as a hash:

{"getWebConnectors"=>{"namePattern"=>"?"}}


504
505
506
507
508
509
510
511
512
513
514
515
# File 'lib/five9tools/admin/get.rb', line 504

def get_web_connectors(params = {})
  if params.is_a?(Hash)
    begin
      res = self.call(:get_web_connectors, message: params)
      res[:get_web_connectors_response].values[0]
    rescue => e
      e.to_s
    end
  else
    "Implement something for simple use case"
  end
end