質問
1つのブランドに複数のサポートアドレスを使用しています。特定のZendesk Supportアドレスを使用して自動返信メールを送信するにはどうすればよいですか?
回答
- 以下の情報を使用してWebhookを作成します。
-
エンドポイントURL:
yoursubdomain
をアカウントのサブドメインにhttps://yoursubdomain.zendesk.com/api/v2/tickets/{{ticket.id}}
して置き換えます。 - リクエスト方法:置く
- 認証:基本認証
-
エンドポイントURL:
- 以下の詳細を含むトリガを作成します。
- 「次の条件をすべて満たす」で、チケット > チケット | = | 作成済み
- 「アクション」で、「通知方法」>「アクティブなWebhook」を追加し、作成したWebhookを選択します。
- 下のコードスニペットをコピーして貼り付けます。
Content
とEmail address
を指定する
{
"ticket": {
"comment": {
"html_body": "Content",
"public": true
},
"recipient": "Email address"
}
}
- 「次の条件をすべて満たす」で、チケット > チケット | = | 作成済み
免責事項:この記事は説明のみを目的として提供されています。記事内で例示したコードについて、Zendeskはサポートも保証もいたしません。何か問題があった場合はコメント欄に投稿するか、インターネットで解決策を探してみてください。
翻訳に関する免責事項:この記事は、お客様の利便性のために自動翻訳ソフ トウェアによって翻訳されたものです。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
サインインしてコメントを残します。