最近の検索
最近の検索はありません

Matthew Knight
参加日2021年10月22日
·
前回のアクティビティ2021年10月22日
フォロー中
0
フォロワー
0
合計アクティビティ
2
投票
0
サブスクリプション
1
アクティビティの概要
バッジ
記事
投稿
コミュニティへのコメント
記事へのコメント
アクティビティの概要
さんの最近のアクティビティ Matthew Knight
Matthew Knightさんがコメントを作成しました:
+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.
コメントを表示 · 投稿日時:2017年7月10日 · Matthew Knight
0
フォロワー
0
投票
0
コメント