최근 검색
최근 검색 없음

Dan Nolan
가입한 날짜: 2021년 10월 16일
·
마지막 활동: 2024년 8월 08일
팔로잉
0
팔로워
0
총 활동 수
5
투표 수
0
플랜 수
3
활동 개요
배지
문서
게시물
커뮤니티 댓글
문서 댓글
활동 개요
님의 최근 활동 Dan Nolan
Dan Nolan님이 에 게시물을 만듦
I am using ticket.requester.phone
as the placeholder in my app which is supposed to pull a user's phone number and then search my company's API for their info to display. I keep getting the error
InvalidPathError: Path 'phone' doesn't exist on node ‘requester’
Does anyone know another way to pull this? It works just fine using ticket.requester.email
const client = ZAFClient.init();
client.invoke('resize', { width: '100%', height: '300px' });
let phone_number;
// Use the Zendesk app client to get the ticket requester's phone
client.get('ticket.requester.phone')
.then(async function(data) {
const phone_number = data['ticket.requester.phone'];
2024년 8월 08일에 게시됨 · Dan Nolan
1
팔로워
0
투표 수
0
댓글
Dan Nolan님이 에 댓글을 입력함
A ticket can only technically be "solved" in a way that counts toward agent metrics once. You can submit a ticket as solved multiple times, and each of those submissions counts as an update, but it only counts as a solve for you if you're the assignee either at the time the query is run, or when the ticket is closed. In that case if you were counting updates as a productivity metric, it could be easily gamed.
One way to game ticket solves though that's more common is agent "stealing" solves from other agents. The best way to check that is to look at tickets where the status is closed, and the ticket has no public or private comments by the assignee.
Overall, though, a much better way to measure productivity is by counting public comments and private comments. Often multiple agents work on a ticket, and it's unfair to only give credit to the one who "solves" it, which is just the last agent to submit the ticket as solved before it moved to a closed state.
Here is an Explore recipe that you can use to give you much better insight into the actual level of engagement agents are having with customers.
댓글 보기 · 2021년 8월 30일에 게시됨 · Dan Nolan
0
팔로워
1
투표
0
댓글