purecloudplatformclientv2 30.0.0 → 30.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,18 @@
1
+ ---
2
+ title: UserRoutingLanguage
3
+ ---
4
+ ## PureCloud::UserRoutingLanguage
5
+
6
+ ## Properties
7
+
8
+ |Name | Type | Description | Notes|
9
+ |------------ | ------------- | ------------- | -------------|
10
+ | **id** | **String** | The globally unique identifier for the object. | [optional] |
11
+ | **name** | **String** | | [optional] |
12
+ | **proficiency** | **Float** | Proficiency is a rating from 0.0 to 5.0 on how competent an agent is for a particular language. It is used when a queue is set to \"Best available language\" mode to allow acd interactions to target agents with higher proficiency ratings. | [optional] |
13
+ | **state** | **String** | Activate or deactivate this routing langauge. | [optional] |
14
+ | **language_uri** | **String** | URI to the organization language used by this user langauge. | [optional] |
15
+ | **self_uri** | **String** | The URI for this object | [optional] |
16
+ {: class="table table-striped"}
17
+
18
+
@@ -0,0 +1,16 @@
1
+ ---
2
+ title: UserRoutingLanguagePost
3
+ ---
4
+ ## PureCloud::UserRoutingLanguagePost
5
+
6
+ ## Properties
7
+
8
+ |Name | Type | Description | Notes|
9
+ |------------ | ------------- | ------------- | -------------|
10
+ | **id** | **String** | The id of the existing routing language to add to the user | |
11
+ | **proficiency** | **Float** | Proficiency is a rating from 0.0 to 5.0 on how competent an agent is for a particular language. It is used when a queue is set to \"Best available language\" mode to allow acd interactions to target agents with higher proficiency ratings. | |
12
+ | **language_uri** | **String** | URI to the organization language used by this user langauge. | [optional] |
13
+ | **self_uri** | **String** | The URI for this object | [optional] |
14
+ {: class="table table-striped"}
15
+
16
+
data/docs/UsersApi.md CHANGED
@@ -10,6 +10,7 @@ Method | Description
10
10
  ------------- | ------------- | -------------
11
11
  [**delete_user**](UsersApi.html#delete_user) | Delete user
12
12
  [**delete_user_roles**](UsersApi.html#delete_user_roles) | Removes all the roles from the user.
13
+ [**delete_user_routinglanguage**](UsersApi.html#delete_user_routinglanguage) | Remove routing language from user
13
14
  [**delete_user_routingskill**](UsersApi.html#delete_user_routingskill) | Remove routing skill from user
14
15
  [**delete_user_station_associatedstation**](UsersApi.html#delete_user_station_associatedstation) | Clear associated station
15
16
  [**delete_user_station_defaultstation**](UsersApi.html#delete_user_station_defaultstation) | Clear default station
@@ -26,6 +27,7 @@ Method | Description
26
27
  [**get_user_profileskills**](UsersApi.html#get_user_profileskills) | List profile skills for a user
27
28
  [**get_user_queues**](UsersApi.html#get_user_queues) | Get queues for user
28
29
  [**get_user_roles**](UsersApi.html#get_user_roles) | Returns a listing of roles and permissions for a user.
30
+ [**get_user_routinglanguages**](UsersApi.html#get_user_routinglanguages) | List routing language for user
29
31
  [**get_user_routingskills**](UsersApi.html#get_user_routingskills) | List routing skills for user
30
32
  [**get_user_routingstatus**](UsersApi.html#get_user_routingstatus) | Fetch the routing status of a user
31
33
  [**get_user_station**](UsersApi.html#get_user_station) | Get station information for user
@@ -39,11 +41,13 @@ Method | Description
39
41
  [**patch_user_geolocation**](UsersApi.html#patch_user_geolocation) | Patch a user's Geolocation
40
42
  [**patch_user_queue**](UsersApi.html#patch_user_queue) | Join or unjoin a queue for a user
41
43
  [**patch_user_queues**](UsersApi.html#patch_user_queues) | Join or unjoin a set of queues for a user
44
+ [**patch_user_routinglanguage**](UsersApi.html#patch_user_routinglanguage) | Update routing language proficiency or state.
42
45
  [**post_analytics_users_aggregates_query**](UsersApi.html#post_analytics_users_aggregates_query) | Query for user aggregates
43
46
  [**post_analytics_users_details_query**](UsersApi.html#post_analytics_users_details_query) | Query for user details
44
47
  [**post_analytics_users_observations_query**](UsersApi.html#post_analytics_users_observations_query) | Query for user observations
45
48
  [**post_user_invite**](UsersApi.html#post_user_invite) | Send an activation email to the user
46
49
  [**post_user_password**](UsersApi.html#post_user_password) | Change a users password
50
+ [**post_user_routinglanguages**](UsersApi.html#post_user_routinglanguages) | Add routing language to user
47
51
  [**post_user_routingskills**](UsersApi.html#post_user_routingskills) | Add routing skill to user
48
52
  [**post_users**](UsersApi.html#post_users) | Create user
49
53
  [**post_users_me_password**](UsersApi.html#post_users_me_password) | Change your password
@@ -175,6 +179,67 @@ nil (empty response body)
175
179
 
176
180
 
177
181
 
182
+ <a name="delete_user_routinglanguage"></a>
183
+
184
+ ## - delete_user_routinglanguage(user_id, language_id)
185
+
186
+ Remove routing language from user
187
+
188
+
189
+
190
+ Wraps DELETE /api/v2/users/{userId}/routinglanguages/{languageId}
191
+
192
+
193
+ ### Example
194
+ ~~~ruby
195
+ # load the gem
196
+ require 'purecloudplatformclientv2'
197
+ # setup authorization
198
+ @secret = ENV['PURECLOUD_SECRET']
199
+ @id = ENV['PURECLOUD_CLIENT_ID']
200
+ environment = "mypurecloud.com"
201
+
202
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
203
+
204
+ PureCloud.configure do |config|
205
+ config.access_token = @authToken
206
+ end
207
+
208
+ api_instance = PureCloud::UsersApi.new
209
+
210
+ user_id = "user_id_example" # String | User ID
211
+
212
+ language_id = "language_id_example" # String | languageId
213
+
214
+
215
+ begin
216
+ #Remove routing language from user
217
+ api_instance.delete_user_routinglanguage(user_id, language_id)
218
+ rescue PureCloud::ApiError => e
219
+ puts "Exception when calling UsersApi->delete_user_routinglanguage: #{e}"
220
+ end
221
+ ~~~
222
+
223
+ ### Parameters
224
+
225
+ Name | Type | Description | Notes
226
+ ------------- | ------------- | ------------- | -------------
227
+ **user_id** | **String**| User ID | |
228
+ **language_id** | **String**| languageId | |
229
+ {: class="table table-striped"}
230
+
231
+
232
+ ### Return type
233
+
234
+ nil (empty response body)
235
+
236
+ ### HTTP request headers
237
+
238
+ - **Content-Type**: application/json
239
+ - **Accept**: application/json
240
+
241
+
242
+
178
243
  <a name="delete_user_routingskill"></a>
179
244
 
180
245
  ## - delete_user_routingskill(user_id, skill_id)
@@ -1171,6 +1236,73 @@ Name | Type | Description | Notes
1171
1236
 
1172
1237
 
1173
1238
 
1239
+ <a name="get_user_routinglanguages"></a>
1240
+
1241
+ ## -[**UserLanguageEntityListing**](UserLanguageEntityListing.html) get_user_routinglanguages(user_id, opts)
1242
+
1243
+ List routing language for user
1244
+
1245
+
1246
+
1247
+ Wraps GET /api/v2/users/{userId}/routinglanguages
1248
+
1249
+
1250
+ ### Example
1251
+ ~~~ruby
1252
+ # load the gem
1253
+ require 'purecloudplatformclientv2'
1254
+ # setup authorization
1255
+ @secret = ENV['PURECLOUD_SECRET']
1256
+ @id = ENV['PURECLOUD_CLIENT_ID']
1257
+ environment = "mypurecloud.com"
1258
+
1259
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
1260
+
1261
+ PureCloud.configure do |config|
1262
+ config.access_token = @authToken
1263
+ end
1264
+
1265
+ api_instance = PureCloud::UsersApi.new
1266
+
1267
+ user_id = "user_id_example" # String | User ID
1268
+
1269
+ opts = {
1270
+ page_size: 25, # Integer | Page size
1271
+ page_number: 1, # Integer | Page number
1272
+ sort_order: "ASC" # String | Ascending or descending sort order
1273
+ }
1274
+
1275
+ begin
1276
+ #List routing language for user
1277
+ result = api_instance.get_user_routinglanguages(user_id, opts)
1278
+ p result
1279
+ rescue PureCloud::ApiError => e
1280
+ puts "Exception when calling UsersApi->get_user_routinglanguages: #{e}"
1281
+ end
1282
+ ~~~
1283
+
1284
+ ### Parameters
1285
+
1286
+ Name | Type | Description | Notes
1287
+ ------------- | ------------- | ------------- | -------------
1288
+ **user_id** | **String**| User ID | |
1289
+ **page_size** | **Integer**| Page size | [optional] [default to 25] |
1290
+ **page_number** | **Integer**| Page number | [optional] [default to 1] |
1291
+ **sort_order** | **String**| Ascending or descending sort order | [optional] [default to ASC]<br />**Values**: ascending, descending |
1292
+ {: class="table table-striped"}
1293
+
1294
+
1295
+ ### Return type
1296
+
1297
+ [**UserLanguageEntityListing**](UserLanguageEntityListing.html)
1298
+
1299
+ ### HTTP request headers
1300
+
1301
+ - **Content-Type**: application/json
1302
+ - **Accept**: application/json
1303
+
1304
+
1305
+
1174
1306
  <a name="get_user_routingskills"></a>
1175
1307
 
1176
1308
  ## -[**UserSkillEntityListing**](UserSkillEntityListing.html) get_user_routingskills(user_id, opts)
@@ -1993,6 +2125,71 @@ Name | Type | Description | Notes
1993
2125
 
1994
2126
 
1995
2127
 
2128
+ <a name="patch_user_routinglanguage"></a>
2129
+
2130
+ ## -[**UserRoutingLanguage**](UserRoutingLanguage.html) patch_user_routinglanguage(user_id, language_id, body)
2131
+
2132
+ Update routing language proficiency or state.
2133
+
2134
+
2135
+
2136
+ Wraps PATCH /api/v2/users/{userId}/routinglanguages/{languageId}
2137
+
2138
+
2139
+ ### Example
2140
+ ~~~ruby
2141
+ # load the gem
2142
+ require 'purecloudplatformclientv2'
2143
+ # setup authorization
2144
+ @secret = ENV['PURECLOUD_SECRET']
2145
+ @id = ENV['PURECLOUD_CLIENT_ID']
2146
+ environment = "mypurecloud.com"
2147
+
2148
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
2149
+
2150
+ PureCloud.configure do |config|
2151
+ config.access_token = @authToken
2152
+ end
2153
+
2154
+ api_instance = PureCloud::UsersApi.new
2155
+
2156
+ user_id = "user_id_example" # String | User ID
2157
+
2158
+ language_id = "language_id_example" # String | languageId
2159
+
2160
+ body = PureCloud::UserRoutingLanguage.new # UserRoutingLanguage | Language
2161
+
2162
+
2163
+ begin
2164
+ #Update routing language proficiency or state.
2165
+ result = api_instance.patch_user_routinglanguage(user_id, language_id, body)
2166
+ p result
2167
+ rescue PureCloud::ApiError => e
2168
+ puts "Exception when calling UsersApi->patch_user_routinglanguage: #{e}"
2169
+ end
2170
+ ~~~
2171
+
2172
+ ### Parameters
2173
+
2174
+ Name | Type | Description | Notes
2175
+ ------------- | ------------- | ------------- | -------------
2176
+ **user_id** | **String**| User ID | |
2177
+ **language_id** | **String**| languageId | |
2178
+ **body** | [**UserRoutingLanguage**](UserRoutingLanguage.html)| Language | |
2179
+ {: class="table table-striped"}
2180
+
2181
+
2182
+ ### Return type
2183
+
2184
+ [**UserRoutingLanguage**](UserRoutingLanguage.html)
2185
+
2186
+ ### HTTP request headers
2187
+
2188
+ - **Content-Type**: application/json
2189
+ - **Accept**: application/json
2190
+
2191
+
2192
+
1996
2193
  <a name="post_analytics_users_aggregates_query"></a>
1997
2194
 
1998
2195
  ## -[**PresenceQueryResponse**](PresenceQueryResponse.html) post_analytics_users_aggregates_query(body)
@@ -2293,6 +2490,68 @@ nil (empty response body)
2293
2490
 
2294
2491
 
2295
2492
 
2493
+ <a name="post_user_routinglanguages"></a>
2494
+
2495
+ ## -[**UserRoutingLanguage**](UserRoutingLanguage.html) post_user_routinglanguages(user_id, body)
2496
+
2497
+ Add routing language to user
2498
+
2499
+
2500
+
2501
+ Wraps POST /api/v2/users/{userId}/routinglanguages
2502
+
2503
+
2504
+ ### Example
2505
+ ~~~ruby
2506
+ # load the gem
2507
+ require 'purecloudplatformclientv2'
2508
+ # setup authorization
2509
+ @secret = ENV['PURECLOUD_SECRET']
2510
+ @id = ENV['PURECLOUD_CLIENT_ID']
2511
+ environment = "mypurecloud.com"
2512
+
2513
+ @authToken = PureCloud.authenticate_with_client_credentials @id, @secret, environment
2514
+
2515
+ PureCloud.configure do |config|
2516
+ config.access_token = @authToken
2517
+ end
2518
+
2519
+ api_instance = PureCloud::UsersApi.new
2520
+
2521
+ user_id = "user_id_example" # String | User ID
2522
+
2523
+ body = PureCloud::UserRoutingLanguagePost.new # UserRoutingLanguagePost | Language
2524
+
2525
+
2526
+ begin
2527
+ #Add routing language to user
2528
+ result = api_instance.post_user_routinglanguages(user_id, body)
2529
+ p result
2530
+ rescue PureCloud::ApiError => e
2531
+ puts "Exception when calling UsersApi->post_user_routinglanguages: #{e}"
2532
+ end
2533
+ ~~~
2534
+
2535
+ ### Parameters
2536
+
2537
+ Name | Type | Description | Notes
2538
+ ------------- | ------------- | ------------- | -------------
2539
+ **user_id** | **String**| User ID | |
2540
+ **body** | [**UserRoutingLanguagePost**](UserRoutingLanguagePost.html)| Language | |
2541
+ {: class="table table-striped"}
2542
+
2543
+
2544
+ ### Return type
2545
+
2546
+ [**UserRoutingLanguage**](UserRoutingLanguage.html)
2547
+
2548
+ ### HTTP request headers
2549
+
2550
+ - **Content-Type**: application/json
2551
+ - **Accept**: application/json
2552
+
2553
+
2554
+
2296
2555
  <a name="post_user_routingskills"></a>
2297
2556
 
2298
2557
  ## -[**UserRoutingSkill**](UserRoutingSkill.html) post_user_routingskills(user_id, body)
data/docs/ViewFilter.md CHANGED
@@ -7,17 +7,28 @@ title: ViewFilter
7
7
 
8
8
  |Name | Type | Description | Notes|
9
9
  |------------ | ------------- | ------------- | -------------|
10
- | **media_types** | **Array&lt;String&gt;** | The media types used to filter the data export request | [optional] |
11
- | **queue_ids** | **Array&lt;String&gt;** | The queue ids used to filter the data export request | [optional] |
12
- | **skill_ids** | **Array&lt;String&gt;** | The skill ids used to filter the data export request | [optional] |
13
- | **language_ids** | **Array&lt;String&gt;** | The language ids used to filter the data export request | [optional] |
14
- | **directions** | **Array&lt;String&gt;** | The directions used to filter the data export request | [optional] |
15
- | **wrap_up_codes** | **Array&lt;String&gt;** | The wrap up codes used to filter the data export request | [optional] |
16
- | **dnis_list** | **Array&lt;String&gt;** | The dnis list used to filter the data export request | [optional] |
17
- | **user_ids** | **Array&lt;String&gt;** | The user ids used to filter the data export request | [optional] |
18
- | **address_tos** | **Array&lt;String&gt;** | The address To values used to filter the data export request | [optional] |
19
- | **outbound_campaign_ids** | **Array&lt;String&gt;** | The outbound campaign ids used to filter the data export request | [optional] |
20
- | **outbound_contact_list_ids** | **Array&lt;String&gt;** | The outbound contact list ids used to filter the data export request | [optional] |
10
+ | **media_types** | **Array&lt;String&gt;** | The media types are used to filter the view | [optional] |
11
+ | **queue_ids** | **Array&lt;String&gt;** | The queue ids are used to filter the view | [optional] |
12
+ | **skill_ids** | **Array&lt;String&gt;** | The skill ids are used to filter the view | [optional] |
13
+ | **language_ids** | **Array&lt;String&gt;** | The language ids are used to filter the view | [optional] |
14
+ | **directions** | **Array&lt;String&gt;** | The directions are used to filter the view | [optional] |
15
+ | **wrap_up_codes** | **Array&lt;String&gt;** | The wrap up codes are used to filter the view | [optional] |
16
+ | **dnis_list** | **Array&lt;String&gt;** | The dnis list is used to filter the view | [optional] |
17
+ | **user_ids** | **Array&lt;String&gt;** | The user ids are used to filter the view | [optional] |
18
+ | **address_tos** | **Array&lt;String&gt;** | The address To values are used to filter the view | [optional] |
19
+ | **address_froms** | **Array&lt;String&gt;** | The address from values are used to filter the view | [optional] |
20
+ | **outbound_campaign_ids** | **Array&lt;String&gt;** | The outbound campaign ids are used to filter the view | [optional] |
21
+ | **outbound_contact_list_ids** | **Array&lt;String&gt;** | The outbound contact list ids are used to filter the view | [optional] |
22
+ | **contact_ids** | **Array&lt;String&gt;** | The contact ids are used to filter the view | [optional] |
23
+ | **ani_list** | **Array&lt;String&gt;** | The ani list ids are used to filter the view | [optional] |
24
+ | **duration_milliseconds** | [**NumericRange**](NumericRange.html) | The duration is used to filter the view | [optional] |
25
+ | **evaluation_score** | [**NumericRange**](NumericRange.html) | The evaluationScore is used to filter the view | [optional] |
26
+ | **evaluation_critical_score** | [**NumericRange**](NumericRange.html) | The evaluationCriticalScore is used to filter the view | [optional] |
27
+ | **evaluation_form_ids** | **Array&lt;String&gt;** | The evaluation form ids are used to filter the view | [optional] |
28
+ | **evaluated_agent_ids** | **Array&lt;String&gt;** | The evaluated agent ids are used to filter the view | [optional] |
29
+ | **evaluator_ids** | **Array&lt;String&gt;** | The evaluator ids are used to filter the view | [optional] |
30
+ | **transferred** | **BOOLEAN** | Indicates filtering for transfers | [optional] |
31
+ | **abandoned** | **BOOLEAN** | Indicates filtering for abandons | [optional] |
21
32
  {: class="table table-striped"}
22
33
 
23
34
 
@@ -167,7 +167,7 @@ end
167
167
 
168
168
  api_instance = PureCloud::WorkforceManagementApi.new
169
169
 
170
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
170
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
171
171
 
172
172
  date = "date_example" # String | ISO-8601 date string with no time or timezone component, interpreted in the configured management unit time zone, e.g. 2017-01-23
173
173
 
@@ -185,7 +185,7 @@ end
185
185
 
186
186
  Name | Type | Description | Notes
187
187
  ------------- | ------------- | ------------- | -------------
188
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
188
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
189
189
  **date** | **String**| ISO-8601 date string with no time or timezone component, interpreted in the configured management unit time zone, e.g. 2017-01-23 | |
190
190
  {: class="table table-striped"}
191
191
 
@@ -229,7 +229,7 @@ end
229
229
 
230
230
  api_instance = PureCloud::WorkforceManagementApi.new
231
231
 
232
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
232
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
233
233
 
234
234
  user_id = "user_id_example" # String | The userId to whom the Time Off Request applies.
235
235
 
@@ -249,7 +249,7 @@ end
249
249
 
250
250
  Name | Type | Description | Notes
251
251
  ------------- | ------------- | ------------- | -------------
252
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
252
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
253
253
  **user_id** | **String**| The userId to whom the Time Off Request applies. | |
254
254
  **time_off_request_id** | **String**| Time Off Request Id | |
255
255
  {: class="table table-striped"}
@@ -294,7 +294,7 @@ end
294
294
 
295
295
  api_instance = PureCloud::WorkforceManagementApi.new
296
296
 
297
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
297
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
298
298
 
299
299
  user_id = "user_id_example" # String | The userId to whom the Time Off Request applies.
300
300
 
@@ -315,7 +315,7 @@ end
315
315
 
316
316
  Name | Type | Description | Notes
317
317
  ------------- | ------------- | ------------- | -------------
318
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
318
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
319
319
  **user_id** | **String**| The userId to whom the Time Off Request applies. | |
320
320
  **recently_reviewed** | **BOOLEAN**| Limit results to requests that have been reviewed within the preceding 30 days | [optional] [default to false] |
321
321
  {: class="table table-striped"}
@@ -360,7 +360,7 @@ end
360
360
 
361
361
  api_instance = PureCloud::WorkforceManagementApi.new
362
362
 
363
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
363
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
364
364
 
365
365
 
366
366
  begin
@@ -376,7 +376,7 @@ end
376
376
 
377
377
  Name | Type | Description | Notes
378
378
  ------------- | ------------- | ------------- | -------------
379
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
379
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
380
380
  {: class="table table-striped"}
381
381
 
382
382
 
@@ -546,7 +546,7 @@ end
546
546
 
547
547
  api_instance = PureCloud::WorkforceManagementApi.new
548
548
 
549
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
549
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
550
550
 
551
551
  opts = {
552
552
  body: PureCloud::WfmHistoricalAdherenceQuery.new # WfmHistoricalAdherenceQuery | body
@@ -565,7 +565,7 @@ end
565
565
 
566
566
  Name | Type | Description | Notes
567
567
  ------------- | ------------- | ------------- | -------------
568
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
568
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
569
569
  **body** | [**WfmHistoricalAdherenceQuery**](WfmHistoricalAdherenceQuery.html)| body | [optional] |
570
570
  {: class="table table-striped"}
571
571
 
@@ -609,7 +609,7 @@ end
609
609
 
610
610
  api_instance = PureCloud::WorkforceManagementApi.new
611
611
 
612
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
612
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
613
613
 
614
614
  opts = {
615
615
  body: PureCloud::IntradayQueryDataCommand.new # IntradayQueryDataCommand | body
@@ -628,7 +628,7 @@ end
628
628
 
629
629
  Name | Type | Description | Notes
630
630
  ------------- | ------------- | ------------- | -------------
631
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
631
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
632
632
  **body** | [**IntradayQueryDataCommand**](IntradayQueryDataCommand.html)| body | [optional] |
633
633
  {: class="table table-striped"}
634
634
 
@@ -672,7 +672,7 @@ end
672
672
 
673
673
  api_instance = PureCloud::WorkforceManagementApi.new
674
674
 
675
- mu_id = "mu_id_example" # String | The muId of the management unit, or 'mine' for the management unit of the logged-in user.
675
+ mu_id = "mu_id_example" # String | The management unit ID of the management unit, or 'mine' for the management unit of the logged-in user.
676
676
 
677
677
  opts = {
678
678
  body: PureCloud::UserListScheduleRequestBody.new # UserListScheduleRequestBody | body
@@ -691,7 +691,7 @@ end
691
691
 
692
692
  Name | Type | Description | Notes
693
693
  ------------- | ------------- | ------------- | -------------
694
- **mu_id** | **String**| The muId of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
694
+ **mu_id** | **String**| The management unit ID of the management unit, or &#39;mine&#39; for the management unit of the logged-in user. | |
695
695
  **body** | [**UserListScheduleRequestBody**](UserListScheduleRequestBody.html)| body | [optional] |
696
696
  {: class="table table-striped"}
697
697