When I run a query for conversation details for a date range, I get different a different response from API Explorer than from a JavaScript call.
"method": "post",
"url": "https://api.mypurecloud.com/api/v2/analytics/conversations/details/query",
"data": {
"order": "asc",
"orderBy": "conversationStart",
"interval": "2024-06-19T10:00:00.000Z/2024-06-19T11:30:00.000Z",
"conversationFilters": [
{
"predicates": [
{
"type": "dimension",
"dimension": "conversationEnd",
"operator": "exists"
}
],
"type": "and"
}
]
}
The above is the payload in API explorer and also the Javascript requests. I tried this as the payload in the following:
- API Explorer
- Genesys Pure Cloud Javascript SDK
- Axios
- Fetch
I'm getting more results for the same daterange in API Explorer. I'm getting less, and the same amongst the other 3 Javascript requests.
Is API explorer doing the query differently?