raslam | 2023-08-08 19:19:27 UTC | #1
Hi Eveyone, I wanted to perform bulk export of recordings for specific queues. Is there a filter I can use in the coding to export only the queues recording?
Ebenezer_Osei | 2023-08-09 14:52:57 UTC | #2
Hi,
Try setting a segmentFilter on queueId when you create the bulk export job. For example:
{
"action": "EXPORT",
"actionDate": "{action date}",
"integrationId": "{integration UUID}",
"conversationQuery": {
...
"segmentFilters": [
{
"type": "or",
"predicates": [
{
"dimension": "queueId",
"value": "{queue 1 UUID}"
},
{
"dimension": "queueId",
"value": "{queue 2 UUID}"
}
]
}
],
"interval": "{interval}"
}
}
system | 2023-09-09 14:52:58 UTC | #3
This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.
This post was migrated from the old Developer Forum.
ref: 21398