Tried it, got below as response
{
"id": "a78....",
"state": "PENDING",
"recordingJobsQuery": {
"action": "EXPORT",
"actionDate": "2025-12-05T09:55:00Z",
"integrationId": "70dea...",
"includeRecordingsWithSensitiveData": false,
"includeScreenRecordings": true
},
"dateCreated": "2025-12-05T09:30:00.170Z",
"totalConversations": 0,
"totalRecordings": 0,
"totalSkippedRecordings": 0,
"totalFailedRecordings": 0,
"totalProcessedRecordings": 0,
"percentProgress": 0,
"selfUri": "/api/v2/recording/jobs/a7...",
"user": {
"id": "",
"selfUri": "/api/v2/users/eea..."
}
}
totalConversations and totalRecordings are 0, even though I have around 5k conversations with recordings
------------------------------
Shubham Bhosale
------------------------------
Original Message:
Sent: 12-05-2025 04:20
From: Samuel Jillard
Subject: Export Recordings to S3 based on queueid
It should work if you set the query like this
curl -X POST 'https://api.aps1.pure.cloud/api/v2/recording/jobs' \
-H 'Authorization: Bearer <REDACTED>' \
-H 'Content-Type: application/json' \
--data-raw '{
"action": "EXPORT",
"actionDate": "2025-12-04T11:52:00.000Z",
"integrationId": "testid123",
"includeScreenRecordings": false,
"conversationQuery": {
"order": "asc",
"orderBy": "conversationStart",
"interval": "2025-08-31T18:30:00.000Z/2025-09-02T18:30:00.000Z",
"segmentFilters": [
{
"type": "and",
"clauses": [
{
"type": "and",
"predicates": [
{ "type": "dimension", "dimension": "queueId", "operator": "matches", "value": "1234567890" }
]
}
]
}
]
}
}'
------------------------------
Sam Jillard
Online Community Manager/Moderator
Genesys - Employees
------------------------------
Original Message:
Sent: 12-05-2025 04:15
From: Shubham Bhosale
Subject: Export Recordings to S3 based on queueid
Hello @Samuel Jillard,
I tried this but it didn't worked.
------------------------------
Shubham Bhosale
Original Message:
Sent: 12-04-2025 09:29
From: Samuel Jillard
Subject: Export Recordings to S3 based on queueid
Hello Shubham,
It looks like you have the queueID dimension under the evaluationsFilter, but it should be a segmentFilter
------------------------------
Sam Jillard
Online Community Manager/Moderator
Genesys - Employees