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.OutboundApi();\ncontact_list_id = 'contact_list_id_example' # str | Contact List ID\n\ntry:\n # Get 10 most recent bulk operation jobs associated with contact list.\n api_response = api_instance.get_outbound_contactlist_contacts_bulk_jobs(contact_list_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling OutboundApi->get_outbound_contactlist_contacts_bulk_jobs: %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.RecordingApi();\njob_id = 'job_id_example' # str | jobId\n\ntry:\n # Get the status and results for a batch request job, only the user that submitted the job may retrieve results\n api_response = api_instance.get_recording_batchrequest(job_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling RecordingApi->get_recording_batchrequest: %s\\n\" % e)"
31821
+
"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.RecordingApi();\njob_id = 'job_id_example' # str | jobId\n\ntry:\n # Get the status and results for a batch request job, only the user that submitted the job may retrieve results. Each result may contain either a URL to a recording or an error; additionally, a recording could be associated with multiple results.\n api_response = api_instance.get_recording_batchrequest(job_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling RecordingApi->get_recording_batchrequest: %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.UserRecordingsApi();\nrecording_id = 'recording_id_example' # str | User Recording ID\nformat_id = ''WEBM'' # str | The desired media format. (optional) (default to 'WEBM')\nasync = True # bool | When set to true, api will return 202 response until the recording is ready for download (optional)\n\ntry:\n # Download a user recording.\n api_response = api_instance.get_userrecording_media(recording_id, format_id=format_id, async=async)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling UserRecordingsApi->get_userrecording_media: %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.UserRecordingsApi();\nrecording_id = 'recording_id_example' # str | User Recording ID\nformat_id = ''WEBM'' # str | The desired media format. (optional) (default to 'WEBM')\n\ntry:\n # Download a user recording.\n api_response = api_instance.get_userrecording_transcoding(recording_id, format_id=format_id)\n pprint(api_response)\nexcept ApiException as e:\n print(\"Exception when calling UserRecordingsApi->get_userrecording_transcoding: %s\\n\" % e)"
0 commit comments