purecloud 0.49.1 → 0.50.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (65) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +3 -3
  3. data/config-ruby.json +1 -1
  4. data/doc_out/AuthorizationApi.html.md +4 -4
  5. data/doc_out/CallbackMediaParticipant.html.md +5 -5
  6. data/doc_out/CampaignDiagnostics.html.md +1 -0
  7. data/doc_out/ConversationsApi.html.md +10 -10
  8. data/doc_out/Document.html.md +1 -1
  9. data/doc_out/DomainLogicalInterface.html.md +0 -1
  10. data/doc_out/EdgeGroup.html.md +1 -2
  11. data/doc_out/FaxDocument.html.md +1 -1
  12. data/doc_out/GroupsSearchResponse.html.md +0 -1
  13. data/doc_out/JsonNode.html.md +2 -2
  14. data/doc_out/Keyword.html.md +5 -5
  15. data/doc_out/KeywordSet.html.md +3 -3
  16. data/doc_out/Line.html.md +1 -0
  17. data/doc_out/LocationsSearchResponse.html.md +0 -1
  18. data/doc_out/OutboundApi.html.md +2 -2
  19. data/doc_out/PresenceApi.html.md +2 -2
  20. data/doc_out/QualityApi.html.md +18 -18
  21. data/doc_out/QualityAudit.html.md +1 -1
  22. data/doc_out/RecordingApi.html.md +4 -4
  23. data/doc_out/RoutingApi.html.md +315 -0
  24. data/doc_out/RuleSetDiagnostic.html.md +14 -0
  25. data/doc_out/ScreenRecordingSession.html.md +1 -1
  26. data/doc_out/TelephonyProvidersEdgeApi.html.md +20 -6
  27. data/doc_out/TrunkBaseAssignment.html.md +1 -1
  28. data/doc_out/UsersApi.html.md +3 -1
  29. data/doc_out/UsersSearchResponse.html.md +0 -1
  30. data/doc_out/index.html.md +3 -3
  31. data/lib/purecloud.rb +1 -1
  32. data/lib/purecloud/api/authorization_api.rb +4 -4
  33. data/lib/purecloud/api/conversations_api.rb +15 -15
  34. data/lib/purecloud/api/outbound_api.rb +3 -3
  35. data/lib/purecloud/api/presence_api.rb +3 -3
  36. data/lib/purecloud/api/quality_api.rb +18 -18
  37. data/lib/purecloud/api/recording_api.rb +4 -4
  38. data/lib/purecloud/api/routing_api.rb +330 -0
  39. data/lib/purecloud/api/telephony_providers_edge_api.rb +12 -0
  40. data/lib/purecloud/api/users_api.rb +3 -0
  41. data/lib/purecloud/api_client.rb +1 -1
  42. data/lib/purecloud/models/analytics_query_predicate.rb +1 -1
  43. data/lib/purecloud/models/callback_media_participant.rb +5 -0
  44. data/lib/purecloud/models/campaign_diagnostics.rb +14 -1
  45. data/lib/purecloud/models/document.rb +11 -11
  46. data/lib/purecloud/models/domain_logical_interface.rb +1 -14
  47. data/lib/purecloud/models/edge_group.rb +2 -15
  48. data/lib/purecloud/models/fax_document.rb +11 -11
  49. data/lib/purecloud/models/groups_search_response.rb +4 -16
  50. data/lib/purecloud/models/json_node.rb +20 -20
  51. data/lib/purecloud/models/keyword.rb +5 -0
  52. data/lib/purecloud/models/keyword_set.rb +2 -0
  53. data/lib/purecloud/models/line.rb +11 -1
  54. data/lib/purecloud/models/locations_search_response.rb +4 -16
  55. data/lib/purecloud/models/quality_audit.rb +11 -11
  56. data/lib/purecloud/models/{dialer_contact_entity_listing.rb → rule_set_diagnostic.rb} +17 -95
  57. data/lib/purecloud/models/screen_recording_session.rb +1 -0
  58. data/lib/purecloud/models/trunk_base_assignment.rb +1 -1
  59. data/lib/purecloud/models/users_search_response.rb +4 -16
  60. data/lib/purecloud/version.rb +1 -1
  61. data/newVersion.md +1 -1
  62. data/swagger.json +1 -1
  63. data/version.json +1 -1
  64. metadata +4 -4
  65. data/doc_out/DialerContactEntityListing.html.md +0 -22
@@ -11,8 +11,8 @@ title: QualityAudit
11
11
  | **name** | **String** | | [optional] |
12
12
  | **user** | [**User**](User.html) | | [optional] |
13
13
  | **timestamp** | **String** | | [optional] |
14
- | **entity** | [**AuditEntity**](AuditEntity.html) | | [optional] |
15
14
  | **level** | **String** | | [optional] |
15
+ | **entity** | [**AuditEntity**](AuditEntity.html) | | [optional] |
16
16
  | **action** | **String** | | [optional] |
17
17
  | **status** | **String** | | [optional] |
18
18
  | **changes** | [**Array<Change>**](Change.html) | | [optional] |
@@ -538,7 +538,7 @@ opts = {
538
538
  page_size: 25, # Integer | The total page size requested
539
539
  page_number: 1, # Integer | The page number requested
540
540
  sort_by: "sort_by_example", # String | variable name requested to sort by
541
- expand: ["expand_example"], # Array<String> | variable name requested by expand list
541
+ expand: nil, # Array<Object> | variable name requested by expand list
542
542
  next_page: "next_page_example", # String | next page token
543
543
  previous_page: "previous_page_example", # String | Previous page token
544
544
  name: "name_example", # String | the policy name - used for filtering results in searches.
@@ -563,7 +563,7 @@ Name | Type | Description | Notes
563
563
  **page_size** | **Integer**| The total page size requested | [optional] [default to 25]
564
564
  **page_number** | **Integer**| The page number requested | [optional] [default to 1]
565
565
  **sort_by** | **String**| variable name requested to sort by | [optional]
566
- **expand** | [**Array&lt;String&gt;**](String.html)| variable name requested by expand list | [optional]
566
+ **expand** | [**Array&lt;Object&gt;**](Object.html)| variable name requested by expand list | [optional]
567
567
  **next_page** | **String**| next page token | [optional]
568
568
  **previous_page** | **String**| Previous page token | [optional]
569
569
  **name** | **String**| the policy name - used for filtering results in searches. | [optional]
@@ -725,7 +725,7 @@ opts = {
725
725
  page_size: 25, # Integer | The total page size requested
726
726
  page_number: 1, # Integer | The page number requested
727
727
  sort_by: "sort_by_example", # String | variable name requested to sort by
728
- expand: ["expand_example"], # Array<String> | variable name requested by expand list
728
+ expand: nil, # Array<Object> | variable name requested by expand list
729
729
  next_page: "next_page_example", # String | next page token
730
730
  previous_page: "previous_page_example" # String | Previous page token
731
731
  }
@@ -746,7 +746,7 @@ Name | Type | Description | Notes
746
746
  **page_size** | **Integer**| The total page size requested | [optional] [default to 25]
747
747
  **page_number** | **Integer**| The page number requested | [optional] [default to 1]
748
748
  **sort_by** | **String**| variable name requested to sort by | [optional]
749
- **expand** | [**Array&lt;String&gt;**](String.html)| variable name requested by expand list | [optional]
749
+ **expand** | [**Array&lt;Object&gt;**](Object.html)| variable name requested by expand list | [optional]
750
750
  **next_page** | **String**| next page token | [optional]
751
751
  **previous_page** | **String**| Previous page token | [optional]
752
752
  {: class="table table-striped"}
@@ -23,6 +23,11 @@ Method | HTTP request | Description
23
23
  |[**get_email_setup**](RoutingApi.html#get_email_setup) | **GET** /api/v2/routing/email/setup | Get email setup|
24
24
  |[**get_queues**](RoutingApi.html#get_queues) | **GET** /api/v2/routing/queues | Get list of queues.|
25
25
  |[**get_queues_queue_id**](RoutingApi.html#get_queues_queue_id) | **GET** /api/v2/routing/queues/{queueId} | Get details about this queue.|
26
+ |[**get_queues_queue_id_conversations**](RoutingApi.html#get_queues_queue_id_conversations) | **GET** /api/v2/routing/queues/{queueId}/conversations | Get recent conversations that are still active|
27
+ |[**get_queues_queue_id_conversations_callbacks**](RoutingApi.html#get_queues_queue_id_conversations_callbacks) | **GET** /api/v2/routing/queues/{queueId}/conversations/callbacks | Get recent callback conversations that are still active|
28
+ |[**get_queues_queue_id_conversations_calls**](RoutingApi.html#get_queues_queue_id_conversations_calls) | **GET** /api/v2/routing/queues/{queueId}/conversations/calls | Get recent call conversations that are still active|
29
+ |[**get_queues_queue_id_conversations_chats**](RoutingApi.html#get_queues_queue_id_conversations_chats) | **GET** /api/v2/routing/queues/{queueId}/conversations/chats | Get recent chat conversations that are still active|
30
+ |[**get_queues_queue_id_conversations_emails**](RoutingApi.html#get_queues_queue_id_conversations_emails) | **GET** /api/v2/routing/queues/{queueId}/conversations/emails | Get recent email conversations that are still active|
26
31
  |[**get_queues_queue_id_estimatedwaittime**](RoutingApi.html#get_queues_queue_id_estimatedwaittime) | **GET** /api/v2/routing/queues/{queueId}/estimatedwaittime | Get Estimated Wait Time|
27
32
  |[**get_queues_queue_id_users**](RoutingApi.html#get_queues_queue_id_users) | **GET** /api/v2/routing/queues/{queueId}/users | Get the members of this queue|
28
33
  |[**get_queues_queue_id_wrapupcodes**](RoutingApi.html#get_queues_queue_id_wrapupcodes) | **GET** /api/v2/routing/queues/{queueId}/wrapupcodes | Get the wrap-up codes for a queue|
@@ -900,6 +905,316 @@ Name | Type | Description | Notes
900
905
 
901
906
 
902
907
 
908
+ <a name="get_queues_queue_id_conversations"></a>
909
+
910
+ ## -[**CallConversationEntityListing**](CallConversationEntityListing.html) get_queues_queue_id_conversations(queue_id, opts)
911
+
912
+ Get recent conversations that are still active
913
+
914
+
915
+
916
+ ### Example
917
+ ~~~ruby
918
+ # load the gem
919
+ require 'purecloud'
920
+ # setup authorization
921
+ @secret = ENV['PURECLOUD_SECRET']
922
+ @id = ENV['PURECLOUD_CLIENT_ID']
923
+ environment = "mypurecloud.com"
924
+
925
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
926
+
927
+ PureCloud.configure do |config|
928
+ config.access_token = @authToken
929
+ end
930
+
931
+ api_instance = PureCloud::RoutingApi.new
932
+
933
+ queue_id = "queue_id_example" # String | Queue ID
934
+
935
+ opts = {
936
+ page_size: 25, # Integer | Page size
937
+ page_number: 1 # Integer | Page number
938
+ }
939
+
940
+ begin
941
+ #Get recent conversations that are still active
942
+ result = api_instance.get_queues_queue_id_conversations(queue_id, opts)
943
+ p result
944
+ rescue PureCloud::ApiError => e
945
+ puts "Exception when calling RoutingApi->get_queues_queue_id_conversations: #{e}"
946
+ end
947
+ ~~~
948
+
949
+ ### Parameters
950
+
951
+ Name | Type | Description | Notes
952
+ ------------- | ------------- | ------------- | -------------
953
+ **queue_id** | **String**| Queue ID |
954
+ **page_size** | **Integer**| Page size | [optional] [default to 25]
955
+ **page_number** | **Integer**| Page number | [optional] [default to 1]
956
+ {: class="table table-striped"}
957
+
958
+
959
+ ### Return type
960
+
961
+ [**CallConversationEntityListing**](CallConversationEntityListing.html)
962
+
963
+ ### HTTP request headers
964
+
965
+ - **Content-Type**: application/json
966
+ - **Accept**: application/json
967
+
968
+
969
+
970
+ <a name="get_queues_queue_id_conversations_callbacks"></a>
971
+
972
+ ## -[**CallbackConversationEntityListing**](CallbackConversationEntityListing.html) get_queues_queue_id_conversations_callbacks(queue_id, opts)
973
+
974
+ Get recent callback conversations that are still active
975
+
976
+
977
+
978
+ ### Example
979
+ ~~~ruby
980
+ # load the gem
981
+ require 'purecloud'
982
+ # setup authorization
983
+ @secret = ENV['PURECLOUD_SECRET']
984
+ @id = ENV['PURECLOUD_CLIENT_ID']
985
+ environment = "mypurecloud.com"
986
+
987
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
988
+
989
+ PureCloud.configure do |config|
990
+ config.access_token = @authToken
991
+ end
992
+
993
+ api_instance = PureCloud::RoutingApi.new
994
+
995
+ queue_id = "queue_id_example" # String | Queue ID
996
+
997
+ opts = {
998
+ page_size: 25, # Integer | Page size
999
+ page_number: 1 # Integer | Page number
1000
+ }
1001
+
1002
+ begin
1003
+ #Get recent callback conversations that are still active
1004
+ result = api_instance.get_queues_queue_id_conversations_callbacks(queue_id, opts)
1005
+ p result
1006
+ rescue PureCloud::ApiError => e
1007
+ puts "Exception when calling RoutingApi->get_queues_queue_id_conversations_callbacks: #{e}"
1008
+ end
1009
+ ~~~
1010
+
1011
+ ### Parameters
1012
+
1013
+ Name | Type | Description | Notes
1014
+ ------------- | ------------- | ------------- | -------------
1015
+ **queue_id** | **String**| Queue ID |
1016
+ **page_size** | **Integer**| Page size | [optional] [default to 25]
1017
+ **page_number** | **Integer**| Page number | [optional] [default to 1]
1018
+ {: class="table table-striped"}
1019
+
1020
+
1021
+ ### Return type
1022
+
1023
+ [**CallbackConversationEntityListing**](CallbackConversationEntityListing.html)
1024
+
1025
+ ### HTTP request headers
1026
+
1027
+ - **Content-Type**: application/json
1028
+ - **Accept**: application/json
1029
+
1030
+
1031
+
1032
+ <a name="get_queues_queue_id_conversations_calls"></a>
1033
+
1034
+ ## -[**CallConversationEntityListing**](CallConversationEntityListing.html) get_queues_queue_id_conversations_calls(queue_id, opts)
1035
+
1036
+ Get recent call conversations that are still active
1037
+
1038
+
1039
+
1040
+ ### Example
1041
+ ~~~ruby
1042
+ # load the gem
1043
+ require 'purecloud'
1044
+ # setup authorization
1045
+ @secret = ENV['PURECLOUD_SECRET']
1046
+ @id = ENV['PURECLOUD_CLIENT_ID']
1047
+ environment = "mypurecloud.com"
1048
+
1049
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
1050
+
1051
+ PureCloud.configure do |config|
1052
+ config.access_token = @authToken
1053
+ end
1054
+
1055
+ api_instance = PureCloud::RoutingApi.new
1056
+
1057
+ queue_id = "queue_id_example" # String | Queue ID
1058
+
1059
+ opts = {
1060
+ page_size: 25, # Integer | Page size
1061
+ page_number: 1 # Integer | Page number
1062
+ }
1063
+
1064
+ begin
1065
+ #Get recent call conversations that are still active
1066
+ result = api_instance.get_queues_queue_id_conversations_calls(queue_id, opts)
1067
+ p result
1068
+ rescue PureCloud::ApiError => e
1069
+ puts "Exception when calling RoutingApi->get_queues_queue_id_conversations_calls: #{e}"
1070
+ end
1071
+ ~~~
1072
+
1073
+ ### Parameters
1074
+
1075
+ Name | Type | Description | Notes
1076
+ ------------- | ------------- | ------------- | -------------
1077
+ **queue_id** | **String**| Queue ID |
1078
+ **page_size** | **Integer**| Page size | [optional] [default to 25]
1079
+ **page_number** | **Integer**| Page number | [optional] [default to 1]
1080
+ {: class="table table-striped"}
1081
+
1082
+
1083
+ ### Return type
1084
+
1085
+ [**CallConversationEntityListing**](CallConversationEntityListing.html)
1086
+
1087
+ ### HTTP request headers
1088
+
1089
+ - **Content-Type**: application/json
1090
+ - **Accept**: application/json
1091
+
1092
+
1093
+
1094
+ <a name="get_queues_queue_id_conversations_chats"></a>
1095
+
1096
+ ## -[**ChatConversationEntityListing**](ChatConversationEntityListing.html) get_queues_queue_id_conversations_chats(queue_id, opts)
1097
+
1098
+ Get recent chat conversations that are still active
1099
+
1100
+
1101
+
1102
+ ### Example
1103
+ ~~~ruby
1104
+ # load the gem
1105
+ require 'purecloud'
1106
+ # setup authorization
1107
+ @secret = ENV['PURECLOUD_SECRET']
1108
+ @id = ENV['PURECLOUD_CLIENT_ID']
1109
+ environment = "mypurecloud.com"
1110
+
1111
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
1112
+
1113
+ PureCloud.configure do |config|
1114
+ config.access_token = @authToken
1115
+ end
1116
+
1117
+ api_instance = PureCloud::RoutingApi.new
1118
+
1119
+ queue_id = "queue_id_example" # String | Queue ID
1120
+
1121
+ opts = {
1122
+ page_size: 25, # Integer | Page size
1123
+ page_number: 1 # Integer | Page number
1124
+ }
1125
+
1126
+ begin
1127
+ #Get recent chat conversations that are still active
1128
+ result = api_instance.get_queues_queue_id_conversations_chats(queue_id, opts)
1129
+ p result
1130
+ rescue PureCloud::ApiError => e
1131
+ puts "Exception when calling RoutingApi->get_queues_queue_id_conversations_chats: #{e}"
1132
+ end
1133
+ ~~~
1134
+
1135
+ ### Parameters
1136
+
1137
+ Name | Type | Description | Notes
1138
+ ------------- | ------------- | ------------- | -------------
1139
+ **queue_id** | **String**| Queue ID |
1140
+ **page_size** | **Integer**| Page size | [optional] [default to 25]
1141
+ **page_number** | **Integer**| Page number | [optional] [default to 1]
1142
+ {: class="table table-striped"}
1143
+
1144
+
1145
+ ### Return type
1146
+
1147
+ [**ChatConversationEntityListing**](ChatConversationEntityListing.html)
1148
+
1149
+ ### HTTP request headers
1150
+
1151
+ - **Content-Type**: application/json
1152
+ - **Accept**: application/json
1153
+
1154
+
1155
+
1156
+ <a name="get_queues_queue_id_conversations_emails"></a>
1157
+
1158
+ ## -[**EmailConversationEntityListing**](EmailConversationEntityListing.html) get_queues_queue_id_conversations_emails(queue_id, opts)
1159
+
1160
+ Get recent email conversations that are still active
1161
+
1162
+
1163
+
1164
+ ### Example
1165
+ ~~~ruby
1166
+ # load the gem
1167
+ require 'purecloud'
1168
+ # setup authorization
1169
+ @secret = ENV['PURECLOUD_SECRET']
1170
+ @id = ENV['PURECLOUD_CLIENT_ID']
1171
+ environment = "mypurecloud.com"
1172
+
1173
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
1174
+
1175
+ PureCloud.configure do |config|
1176
+ config.access_token = @authToken
1177
+ end
1178
+
1179
+ api_instance = PureCloud::RoutingApi.new
1180
+
1181
+ queue_id = "queue_id_example" # String | Queue ID
1182
+
1183
+ opts = {
1184
+ page_size: 25, # Integer | Page size
1185
+ page_number: 1 # Integer | Page number
1186
+ }
1187
+
1188
+ begin
1189
+ #Get recent email conversations that are still active
1190
+ result = api_instance.get_queues_queue_id_conversations_emails(queue_id, opts)
1191
+ p result
1192
+ rescue PureCloud::ApiError => e
1193
+ puts "Exception when calling RoutingApi->get_queues_queue_id_conversations_emails: #{e}"
1194
+ end
1195
+ ~~~
1196
+
1197
+ ### Parameters
1198
+
1199
+ Name | Type | Description | Notes
1200
+ ------------- | ------------- | ------------- | -------------
1201
+ **queue_id** | **String**| Queue ID |
1202
+ **page_size** | **Integer**| Page size | [optional] [default to 25]
1203
+ **page_number** | **Integer**| Page number | [optional] [default to 1]
1204
+ {: class="table table-striped"}
1205
+
1206
+
1207
+ ### Return type
1208
+
1209
+ [**EmailConversationEntityListing**](EmailConversationEntityListing.html)
1210
+
1211
+ ### HTTP request headers
1212
+
1213
+ - **Content-Type**: application/json
1214
+ - **Accept**: application/json
1215
+
1216
+
1217
+
903
1218
  <a name="get_queues_queue_id_estimatedwaittime"></a>
904
1219
 
905
1220
  ## -[**EstimatedWaitTimePredictions**](EstimatedWaitTimePredictions.html) get_queues_queue_id_estimatedwaittime(queue_id, opts)
@@ -0,0 +1,14 @@
1
+ ---
2
+ title: RuleSetDiagnostic
3
+ ---
4
+ ## PureCloud::RuleSetDiagnostic
5
+
6
+ ## Properties
7
+
8
+ |Name | Type | Description | Notes|
9
+ |------------ | ------------- | ------------- | -------------|
10
+ | **rule_set** | [**UriReference**](UriReference.html) | A campaign rule set | [optional] |
11
+ | **warnings** | **Array&lt;String&gt;** | Diagnostic warnings for the rule set | [optional] |
12
+ {: class="table table-striped"}
13
+
14
+
@@ -8,7 +8,7 @@ title: ScreenRecordingSession
8
8
  |Name | Type | Description | Notes|
9
9
  |------------ | ------------- | ------------- | -------------|
10
10
  | **user** | [**User**](User.html) | | [optional] |
11
- | **participant_id** | **String** | | [optional] |
11
+ | **participant_id** | **String** | The id of the participant whose screen is being recorded on the conversation | [optional] |
12
12
  | **conversation** | [**Conversation**](Conversation.html) | | [optional] |
13
13
  | **start_time** | **DateTime** | Date time is represented as an ISO-8601 string. For example: yyyy-MM-ddTHH:mm:ss.SSSZ | [optional] |
14
14
  {: class="table table-striped"}
@@ -1489,7 +1489,7 @@ Name | Type | Description | Notes
1489
1489
 
1490
1490
  <a name="get_providers_edges_edge_id_logicalinterfaces"></a>
1491
1491
 
1492
- ## -[**LogicalInterfaceEntityListing**](LogicalInterfaceEntityListing.html) get_providers_edges_edge_id_logicalinterfaces(edge_id)
1492
+ ## -[**LogicalInterfaceEntityListing**](LogicalInterfaceEntityListing.html) get_providers_edges_edge_id_logicalinterfaces(edge_id, opts)
1493
1493
 
1494
1494
  Get edge logical interfaces.
1495
1495
 
@@ -1514,10 +1514,13 @@ api_instance = PureCloud::TelephonyProvidersEdgeApi.new
1514
1514
 
1515
1515
  edge_id = "edge_id_example" # String | Edge ID
1516
1516
 
1517
+ opts = {
1518
+ expand: ["expand_example"] # Array<String> | Field to expand in the response
1519
+ }
1517
1520
 
1518
1521
  begin
1519
1522
  #Get edge logical interfaces.
1520
- result = api_instance.get_providers_edges_edge_id_logicalinterfaces(edge_id)
1523
+ result = api_instance.get_providers_edges_edge_id_logicalinterfaces(edge_id, opts)
1521
1524
  p result
1522
1525
  rescue PureCloud::ApiError => e
1523
1526
  puts "Exception when calling TelephonyProvidersEdgeApi->get_providers_edges_edge_id_logicalinterfaces: #{e}"
@@ -1529,6 +1532,7 @@ end
1529
1532
  Name | Type | Description | Notes
1530
1533
  ------------- | ------------- | ------------- | -------------
1531
1534
  **edge_id** | **String**| Edge ID |
1535
+ **expand** | [**Array&lt;String&gt;**](String.html)| Field to expand in the response | [optional]
1532
1536
  {: class="table table-striped"}
1533
1537
 
1534
1538
 
@@ -1545,7 +1549,7 @@ Name | Type | Description | Notes
1545
1549
 
1546
1550
  <a name="get_providers_edges_edge_id_logicalinterfaces_interface_id"></a>
1547
1551
 
1548
- ## -[**DomainLogicalInterface**](DomainLogicalInterface.html) get_providers_edges_edge_id_logicalinterfaces_interface_id(edge_id, interface_id)
1552
+ ## -[**DomainLogicalInterface**](DomainLogicalInterface.html) get_providers_edges_edge_id_logicalinterfaces_interface_id(edge_id, interface_id, opts)
1549
1553
 
1550
1554
  Get an edge logical interface
1551
1555
 
@@ -1572,10 +1576,13 @@ edge_id = "edge_id_example" # String | Edge ID
1572
1576
 
1573
1577
  interface_id = "interface_id_example" # String | Interface ID
1574
1578
 
1579
+ opts = {
1580
+ expand: ["expand_example"] # Array<String> | Field to expand in the response
1581
+ }
1575
1582
 
1576
1583
  begin
1577
1584
  #Get an edge logical interface
1578
- result = api_instance.get_providers_edges_edge_id_logicalinterfaces_interface_id(edge_id, interface_id)
1585
+ result = api_instance.get_providers_edges_edge_id_logicalinterfaces_interface_id(edge_id, interface_id, opts)
1579
1586
  p result
1580
1587
  rescue PureCloud::ApiError => e
1581
1588
  puts "Exception when calling TelephonyProvidersEdgeApi->get_providers_edges_edge_id_logicalinterfaces_interface_id: #{e}"
@@ -1588,6 +1595,7 @@ Name | Type | Description | Notes
1588
1595
  ------------- | ------------- | ------------- | -------------
1589
1596
  **edge_id** | **String**| Edge ID |
1590
1597
  **interface_id** | **String**| Interface ID |
1598
+ **expand** | [**Array&lt;String&gt;**](String.html)| Field to expand in the response | [optional]
1591
1599
  {: class="table table-striped"}
1592
1600
 
1593
1601
 
@@ -1953,7 +1961,7 @@ Name | Type | Description | Notes
1953
1961
 
1954
1962
  <a name="get_providers_edges_edgegroups_edgegroup_id"></a>
1955
1963
 
1956
- ## -[**EdgeGroup**](EdgeGroup.html) get_providers_edges_edgegroups_edgegroup_id(edge_group_id)
1964
+ ## -[**EdgeGroup**](EdgeGroup.html) get_providers_edges_edgegroups_edgegroup_id(edge_group_id, opts)
1957
1965
 
1958
1966
  Get edge group.
1959
1967
 
@@ -1978,10 +1986,13 @@ api_instance = PureCloud::TelephonyProvidersEdgeApi.new
1978
1986
 
1979
1987
  edge_group_id = "edge_group_id_example" # String | Edge group ID
1980
1988
 
1989
+ opts = {
1990
+ expand: ["expand_example"] # Array<String> | Fields to expand in the response
1991
+ }
1981
1992
 
1982
1993
  begin
1983
1994
  #Get edge group.
1984
- result = api_instance.get_providers_edges_edgegroups_edgegroup_id(edge_group_id)
1995
+ result = api_instance.get_providers_edges_edgegroups_edgegroup_id(edge_group_id, opts)
1985
1996
  p result
1986
1997
  rescue PureCloud::ApiError => e
1987
1998
  puts "Exception when calling TelephonyProvidersEdgeApi->get_providers_edges_edgegroups_edgegroup_id: #{e}"
@@ -1993,6 +2004,7 @@ end
1993
2004
  Name | Type | Description | Notes
1994
2005
  ------------- | ------------- | ------------- | -------------
1995
2006
  **edge_group_id** | **String**| Edge group ID |
2007
+ **expand** | [**Array&lt;String&gt;**](String.html)| Fields to expand in the response | [optional]
1996
2008
  {: class="table table-striped"}
1997
2009
 
1998
2010
 
@@ -3101,6 +3113,7 @@ opts = {
3101
3113
  web_rtc_user_id: "web_rtc_user_id_example", # String | Filter by webRtcUser.id
3102
3114
  phone_base_settings_id: "phone_base_settings_id_example", # String | Filter by phoneBaseSettings.id
3103
3115
  lines_logged_in_user_id: "lines_logged_in_user_id_example", # String | Filter by lines.loggedInUser.id
3116
+ lines_default_for_user_id: "lines_default_for_user_id_example", # String | Filter by lines.defaultForUser.id
3104
3117
  phone_hardware_id: "phone_hardware_id_example", # String | Filter by phone_hardwareId
3105
3118
  lines_id: "lines_id_example", # String | Filter by lines.id
3106
3119
  lines_name: "lines_name_example", # String | Filter by lines.name
@@ -3129,6 +3142,7 @@ Name | Type | Description | Notes
3129
3142
  **web_rtc_user_id** | **String**| Filter by webRtcUser.id | [optional]
3130
3143
  **phone_base_settings_id** | **String**| Filter by phoneBaseSettings.id | [optional]
3131
3144
  **lines_logged_in_user_id** | **String**| Filter by lines.loggedInUser.id | [optional]
3145
+ **lines_default_for_user_id** | **String**| Filter by lines.defaultForUser.id | [optional]
3132
3146
  **phone_hardware_id** | **String**| Filter by phone_hardwareId | [optional]
3133
3147
  **lines_id** | **String**| Filter by lines.id | [optional]
3134
3148
  **lines_name** | **String**| Filter by lines.name | [optional]