keithkelly
2 years agoLeader
Possible? Display 30-day FRT on a Board Component?
Our Board Oversight teams would like a component on their boards that displays the First Response Time (FRT) average over the past 30 days.
While I realize I can grab this in Community Analytics, and I also am comfortable around the API... I'm a bit of a newbie when it comes to grabbing time-constrained data via the API
Here's the board component with the line in question:
<#if userHasApplicableRole>
<#assign frt = [30_DAY_BOARD_FRT_AVG] /> <#-- this -->
<div class="dc-boardwidget-FRT" title="FRT 30-day average">
<i class="fa-regular fa-reply-clock"></i>
<span>${frt}</span>
</div>
</#if>
Is this possible with the API?