问题
我对一个品牌使用多个客服电邮地址。如何使用特定的 Zendesk客服电邮地址发送自动电邮回复?
回答
- 使用以下详情创建一个 Webhook:
-
端点 URL:
https://yoursubdomain.zendesk.com/api/v2/tickets/{{ticket.id}}
并将 替换为yoursubdomain
替换为您的帐户子域名。 - 请求方法:放置
- 身份验证:基本身份验证
-
端点 URL:
- 使用以下详情创建 触发器 :
- 在 满足所有以下条件下添加 工单 > 工单 | 是 | 创建于
- 在 操作下添加 通知方式 > 活跃的 webhook|选择您创建的 Webhook。
- 复制并粘贴以下代码段。指定您的
Content
和Email address
{
"ticket": {
"comment": {
"html_body": "Content",
"public": true
},
"recipient": "Email address"
}
}
- 在 满足所有以下条件下添加 工单 > 工单 | 是 | 创建于
免责声明:本文仅供说明之用。Zendesk 对代码不提供支持,也不保证代码质量。如有任何问题,请将其发布在评论部分,或尝试在线搜索解决方案。
翻译免责声明:本文章使用自动翻译软件翻译,以便您了解基本内容。 我们已采取合理措施提供准确翻译,但不保证翻译准确性
如对翻译准确性有任何疑问,请以文章的英语版本为准。
5 条评论
Emad Salam
Hi, I tried the above method. Its not explained in detail though. It didn't work. Im probably missing more information as the post doesn't fully explain every field.
I chose the trigger or automation connection. Whats the request format. Which username am I using? anything in the headers? A lot of info is missing from the post. I tried reaching out to customer support but they weren't able to provide much knowledge past linking this post.
0
Mike DR
HeyA Hunter!
If Basic authentication isn't working, I would highly suggest using oAuth for authentication since your team has SSO enabled.
0
Hunter Morrison
Can this be done with SSO enabled for the org? We continue to get an authentication error here.
0
Mike DR
Hi Kina!
That can be done using the same steps for using a webhook and trigger. You'll need to use this json code instead:
You would then replace the “Content” with the acknowledgement message.
Hope this helps!
0
Kina Smith
Hi,
I'd like to set up an automatic public reply for new tickets using our standard acknowledgement message. Ideally, this would leverage a macro for the message content.
Is it possible to achieve this with JSON? If not, can the entire message be written directly in JSON?
What are the steps to achieve this? Webhook and a trigger? If yes, what would the json look like?
Kina
0
登录以发表评论。