Information regarding getting long running conversations like emails and callbacks

Information regarding getting long running conversations like emails, messages and callbacks.
How can we get only long running conversations?

1 Like

Hi @Dileepkaranki
There is a metric "tConversationDuration" for the conversation details query.
You could have a request body like this

{
    "order": "desc",
    "orderBy": "conversationStart",
    "interval": "2024-04-21T00:00:00.000Z/2024-05-21T00:00:00.000Z",
    "conversationFilters": [
      {
        "type": "or",
        "predicates": [
          {
            "metric": "tConversationDuration",
            "range": {
              "gte": 3000000
            }
          }
        ]
      }
    ],
  }
1 Like

Also the mediaType dimension in the conversations details query allows to you call for email and callback vs. voice or message for example.

Thank you @jacobshaw, I will check this.
@jacobshaw Could you answer my queries related to below forum

@jacobshaw is the value referred above is seconds or milliseconds?

@Dileepkaranki
This is the value in milliseconds

This topic was automatically closed 31 days after the last reply. New replies are no longer allowed.