You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Documentation can be found at [https://developer.genesys.cloud/devapps/sdk/docexplorer/purecloudpython/](https://developer.genesys.cloud/devapps/sdk/docexplorer/purecloudpython/)
6
+
Documentation can be found at https://mypurecloud.github.io/platform-client-sdk-python/
9
7
10
-
## Preview API's
8
+
Documentation version PureCloudPlatformClientV2 211.1.0
11
9
12
-
**Warning:** Preview API's are included in this SDK. These resources are subject to both breaking and non-breaking changes at any time without notice. This includes, but is not limited to, changing resource names, paths, contracts, documentation, and removing resources entirely. For a full list of the preview API's see [here](https://developer.genesys.cloud/platform/preview-apis)
10
+
## Preview APIs
11
+
12
+
**Warning:** Preview APIs are included in this SDK. These resources are subject to both breaking and non-breaking changes at any time without notice. This includes, but is not limited to, changing resource names, paths, contracts, documentation, and removing resources entirely. For a full list of the preview APIs see [here](https://developer.genesys.cloud/platform/preview-apis)
Copy file name to clipboardExpand all lines: build/APIData.json
+33Lines changed: 33 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -18164,6 +18164,39 @@
18164
18164
"return": "CredentialTypeListing",
18165
18165
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.IntegrationsApi();\n\ntry:\n # List all credential types\n api_response = api_instance.get_integrations_credentials_types()\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling IntegrationsApi->get_integrations_credentials_types: %s\\n\" % e)"
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.IntegrationsApi();\npage_number = 1 # int | Page number (optional) (default to 1)\npage_size = 25 # int | Page size (optional) (default to 25)\n\ntry:\n # Get a list of Audio Connector integrations\n api_response = api_instance.get_integrations_speech_audioconnector(page_number=page_number, page_size=page_size)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling IntegrationsApi->get_integrations_speech_audioconnector: %s\\n\" % e)"
"example": "import PureCloudPlatformClientV2\nfrom PureCloudPlatformClientV2.rest import ApiException\nfrom pprint import pprint\n\n# Configure OAuth2 access token for authorization: PureCloud OAuth\nPureCloudPlatformClientV2.configuration.access_token = 'your_access_token'\n# or use get_client_credentials_token(...), get_saml2bearer_token(...), get_code_authorization_token(...) or get_pkce_token(...)\n\n# create an instance of the API class\napi_instance = PureCloudPlatformClientV2.IntegrationsApi();\nintegration_id = 'integration_id_example' # str | The integration ID\n\ntry:\n # Get an Audio Connector integration\n api_response = api_instance.get_integrations_speech_audioconnector_integration_id(integration_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling IntegrationsApi->get_integrations_speech_audioconnector_integration_id: %s\\n\" % e)"
0 commit comments