Recherches récentes
Pas de recherche récente

Matthew Knight
Adhésion le 22 oct. 2021
·
Dernière activité le 22 oct. 2021
Suivis
0
Abonnés
0
Activité totale
2
Votes
0
Abonnement
1
APERÇU DES ACTIVITÉS
BADGES
ARTICLES
PUBLICATIONS
COMMENTAIRES DE LA COMMUNAUTÉ
COMMENTAIRES SUR L’ARTICLE
APERÇU DES ACTIVITÉS
Dernière activité effectuée par Matthew Knight
Matthew Knight a ajouté un commentaire,
+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.
Afficher le commentaire · Publication le 10 juil. 2017 · Matthew Knight
0
Abonnés
0
Votes
0
Commentaire