Good Morning together!
I'm new to the Genesys API and I'm to extract Conversation Details via Python and add them to our Data Warehouse. I tried to build incremental loads via the interval argument but it returns way more conversations than I would like. Is there an option to filter for conversations that ended in the specified interval?
Here's the current body I'm using:
{
"conversationFilters": [
{
"type": "and",
"clauses": [
{
"type": "and",
"predicates": [
{"dimension": "conversationEnd",
"operator": "exists"}
]
}
]
}
],
"interval": "2024-06-03T11:30:00/2024-06-04T11:31:00",
"paging":
{
"pageSize": 100,
"pageNumber": i
}
}