주 콘텐츠로 건너뛰기

Retrieve Ticket Owner email addresses - 지식 베이스 / Using Deskpro / Reports - Deskpro Support

Retrieve Ticket Owner email addresses

저자 리스트

You can create a query that returns a table of tickets, including the email address of each ticket's owner (user). To do this, you can cross-reference from the tickets table to the person table using: 

tickets.person.primary_email.email

 e.g.:

SELECT tickets.id, tickets.subject, tickets.date_created, tickets.person.primary_email.email
FROM tickets

 which would give you a table like this: 

도움이 되었습니다 도움이 되지 않음