最近搜索


没有最近搜索

Dan Nolan's Avatar

Dan Nolan

已加入2021年10月16日

·

最后活动2024年8月08日

关注

0

关注者

0

活动总数

5

投票

0

订阅

3

活动概览

的最新活动 Dan Nolan

Dan Nolan 创建了一个帖子,

帖子 Developer - Zendesk Apps Framework (ZAF)

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 进行了评论,

社区评论 Q&A - Reporting and analytics

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

评论