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
"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.QualityApi();\nform_id = 'form_id_example' # str | Form ID\nbody = PureCloudPlatformClientV2.PredictiveScoringSettings() # PredictiveScoringSettings | Predictive Scoring Settings\n\ntry:\n # Update the Predictive Scoring settings of an evaluation form.\n api_response = api_instance.put_quality_forms_evaluation_predictivescoring_settings(form_id, body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling QualityApi->put_quality_forms_evaluation_predictivescoring_settings: %s\\n\" % e)"
31255
+
"return": "AiScoringSettings",
31256
+
"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.QualityApi();\nform_id = 'form_id_example' # str | Form ID\nbody = PureCloudPlatformClientV2.AiScoringSettings() # AiScoringSettings | AI Scoring Settings\n\ntry:\n # Update the AI Scoring settings of an evaluation form.\n api_response = api_instance.put_quality_forms_evaluation_aiscoring_settings(form_id, body)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling QualityApi->put_quality_forms_evaluation_aiscoring_settings: %s\\n\" % e)"
Update the Predictive Scoring settings of an evaluation form.
5050
+
Update the AI Scoring settings of an evaluation form.
5051
5051
5052
-
put_quality_forms_evaluation_predictivescoring_settings is a preview method and is subject to both breaking and non-breaking changes at any time without notice
5052
+
put_quality_forms_evaluation_aiscoring_settings is a preview method and is subject to both breaking and non-breaking changes at any time without notice
5053
5053
5054
5054
This method makes a synchronous HTTP request by default. To make an
5055
5055
asynchronous HTTP request, please define a `callback` function
0 commit comments