Recent searches


No recent searches

Matthew Knight's Avatar

Matthew Knight

Joined Oct 22, 2021

·

Last activity Oct 22, 2021

Following

0

Followers

0

Total activity

2

Votes

0

Subscription

1

ACTIVITY OVERVIEW

Latest activity by Matthew Knight

Matthew Knight commented,

Community comment Feedback - Ticketing system (Support)

+1 I have recently started using Zendesk and quickly needed this functionality so we can escalate tickets outside of Zendesk and allow the user to respond without being added as a CC.

I have put together an API call using liquid markup in a Zendesk trigger that does the trick but it isn't the most elegant solution:

{% assign cc_list = "[" %}
{% for cc in ticket.ccs %}
{% if cc.email != current_user.email %}
{% assign cc_list = cc_list | append: '"' | append: cc.email | append: '",' %}
{% endif %}
{% endfor %}

{"ticket": {"collaborators": {{ cc_list | append: "]" | replace: ",]","]" }} } }

The above just removes the current user's email address from the list of CC's.

View comment · Posted Jul 10, 2017 · Matthew Knight

0

Followers

0

Votes

0

Comments