I’m trying to calculate SLA from the raw interval data returned by the real-time analytics endpoint. The JSON gives me offered and answeredWithin30Seconds, but dividing the two doesn’t match the dashboard value.
c# var sl = (double)interval.AnsweredWithin30Seconds / interval.Offered;
The result is way too high. Is there a specific weighting or a different field I need to use for the denominator?