Number of abandoned calls

How can I get the number of abandoned calls? There is no nAbandoned metric.

If you're using a conversation details endpoint you just count the # of times tAbandon occurred.
If you're using the aggregates endpoint the t-Metrics contain each type of aggregate;

 "metrics": [
            {
              "metric": "tAbandon",
              "stats": {
                "max": 125255,
                "min": 157,
                "count": 22,
                "sum": 971770
              }
            }
          ]

So the count is obvious in that context.

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