Skip to content

Commit ca59ed3

Browse files
author
PureCloud Jenkins
committed
173.1.0
1 parent 9806937 commit ca59ed3

File tree

92 files changed

+679
-1603
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

92 files changed

+679
-1603
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For direct use in a browser script:
3131

3232
```html
3333
<!-- Include the CJS SDK -->
34-
<script src="https://sdk-cdn.mypurecloud.com/javascript/173.0.0/purecloud-platform-client-v2.min.js"></script>
34+
<script src="https://sdk-cdn.mypurecloud.com/javascript/173.1.0/purecloud-platform-client-v2.min.js"></script>
3535

3636
<script type="text/javascript">
3737
// Obtain a reference to the platformClient object
@@ -48,7 +48,7 @@ For direct use in a browser script:
4848

4949
<script type="text/javascript">
5050
// Obtain a reference to the platformClient object
51-
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/173.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
51+
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/173.1.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
5252
console.log(platformClient);
5353
});
5454
</script>

build/APIData.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29905,7 +29905,7 @@
2990529905
}
2990629906
],
2990729907
"return": "QueueMemberEntityListing",
29908-
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.RoutingApi();\n\nlet queueId = \"queueId_example\"; // String | Queue ID\nlet opts = { \n \"pageNumber\": 1, // Number | \n \"pageSize\": 25, // Number | Max value is 100\n \"sortOrder\": \"asc\", // String | Note: results are sorted by name.\n \"expand\": [\"expand_example\"], // [String] | Which fields, if any, to expand.\n \"name\": \"name_example\", // String | Filter by queue member name\n \"profileSkills\": [\"profileSkills_example\"], // [String] | Filter by profile skill\n \"skills\": [\"skills_example\"], // [String] | Filter by skill\n \"languages\": [\"languages_example\"], // [String] | Filter by language\n \"routingStatus\": [\"routingStatus_example\"], // [String] | Filter by routing status\n \"presence\": [\"presence_example\"], // [String] | Filter by presence\n \"memberBy\": \"memberBy_example\", // String | Filter by member type\n \"joined\": true // Boolean | Filter by joined status\n};\n\n// Get the members of this queue.\napiInstance.getRoutingQueueMembers(queueId, opts)\n .then((data) => {\n console.log(`getRoutingQueueMembers success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling getRoutingQueueMembers\");\n console.error(err);\n });"
29908+
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.RoutingApi();\n\nlet queueId = \"queueId_example\"; // String | Queue ID\nlet opts = { \n \"pageNumber\": 1, // Number | \n \"pageSize\": 25, // Number | Max value is 100\n \"sortOrder\": \"asc\", // String | Note: results are sorted by name.\n \"expand\": [\"expand_example\"], // [String] | Which fields, if any, to expand.\n \"name\": \"name_example\", // String | Filter by queue member name (contains-style search)\n \"profileSkills\": [\"profileSkills_example\"], // [String] | Filter by profile skill (contains-style search)\n \"skills\": [\"skills_example\"], // [String] | Filter by skill (contains-style search)\n \"languages\": [\"languages_example\"], // [String] | Filter by language (contains-style search)\n \"routingStatus\": [\"routingStatus_example\"], // [String] | Filter by routing status\n \"presence\": [\"presence_example\"], // [String] | Filter by presence\n \"memberBy\": \"memberBy_example\", // String | Filter by member type\n \"joined\": true // Boolean | Filter by joined status\n};\n\n// Get the members of this queue.\napiInstance.getRoutingQueueMembers(queueId, opts)\n .then((data) => {\n console.log(`getRoutingQueueMembers success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling getRoutingQueueMembers\");\n console.error(err);\n });"
2990929909
},
2991029910
"getroutingqueueusers": {
2991129911
"operationId": "getroutingqueueusers",
@@ -40334,7 +40334,7 @@
4033440334
}
4033540335
],
4033640336
"return": "ActivityCodeContainer",
40337-
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.WorkforceManagementApi();\n\nlet managementUnitId = \"managementUnitId_example\"; // String | The ID of the management unit, or 'mine' for the management unit of the logged-in user.\n\n// Get activity codes\napiInstance.getWorkforcemanagementManagementunitActivitycodes(managementUnitId)\n .then((data) => {\n console.log(`getWorkforcemanagementManagementunitActivitycodes success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling getWorkforcemanagementManagementunitActivitycodes\");\n console.error(err);\n });"
40337+
"example": "const platformClient = require(\"purecloud-platform-client-v2\");\n\nconst client = platformClient.ApiClient.instance;\nclient.setEnvironment(platformClient.PureCloudRegionHosts.us_east_1); // Genesys Cloud region\n\n// Manually set auth token or use loginImplicitGrant(...) or loginClientCredentialsGrant(...)\nclient.setAccessToken(\"your_access_token\");\n\nlet apiInstance = new platformClient.WorkforceManagementApi();\n\nlet managementUnitId = \"managementUnitId_example\"; // String | The ID of the management unit, or 'mine' for the management unit of the logged-in user.\n\n// Deprecated: Instead use /api/v2/workforcemanagement/businessunits/{businessUnitId}/activitycodes. Get the list of activity codes\napiInstance.getWorkforcemanagementManagementunitActivitycodes(managementUnitId)\n .then((data) => {\n console.log(`getWorkforcemanagementManagementunitActivitycodes success! data: ${JSON.stringify(data, null, 2)}`);\n })\n .catch((err) => {\n console.log(\"There was a failure calling getWorkforcemanagementManagementunitActivitycodes\");\n console.error(err);\n });"
4033840338
},
4033940339
"getworkforcemanagementmanagementunitadherence": {
4034040340
"operationId": "getworkforcemanagementmanagementunitadherence",

build/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ For direct use in a browser script:
3131

3232
```html
3333
<!-- Include the CJS SDK -->
34-
<script src="https://sdk-cdn.mypurecloud.com/javascript/173.0.0/purecloud-platform-client-v2.min.js"></script>
34+
<script src="https://sdk-cdn.mypurecloud.com/javascript/173.1.0/purecloud-platform-client-v2.min.js"></script>
3535

3636
<script type="text/javascript">
3737
// Obtain a reference to the platformClient object
@@ -48,7 +48,7 @@ For direct use in a browser script:
4848

4949
<script type="text/javascript">
5050
// Obtain a reference to the platformClient object
51-
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/173.0.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
51+
requirejs(['https://sdk-cdn.mypurecloud.com/javascript/amd/173.1.0/purecloud-platform-client-v2.min.js'], (platformClient) => {
5252
console.log(platformClient);
5353
});
5454
</script>

0 commit comments

Comments
 (0)