Hello Team,
I'm trying to delete recordings using the operation defined in "Bulk operations on recordings". but its not clear .
I was able to delete recordings using a specific interval, but I'm not sure how to delete recordings for a specific user. Can this be achieved using the conversation query filter, or is there an alternate solution?
query = PureCloudPlatformClientV2.RecordingJobsQuery()
query.action = "DELETE"
query.action_date = "2025-01-27T12:15:00.000Z"
# Comment out integration id if using DELETE or ARCHIVE
# query.integration_id = ""
query.conversation_query = {
"interval": "2025-01-23T00:00:00.000Z/2025-01-26T00:00:00.000Z",
"order": "asc",
` "orderBy": "conversationStart"