Pregunta
Uso varias direcciones de soporte para una marca. ¿Cómo se usa una dirección de soporte específica de Zendesk para enviar respuestas automáticas por correo electrónico?
Respuesta
- Cree un webhook con los detalles a continuación:
-
URL de extremo:
https://yoursubdomain.zendesk.com/api/v2/tickets/{{ticket.id}}
y reemplazaryoursubdomain
con el subdominio de su cuenta. - Métodode solicitud : PUT
- Autenticación: Autenticación básica
-
URL de extremo:
- Cree un disparador con los detalles a continuación:
- En Satisfacer TODAS las siguientes condiciones, agregue Ticket > Ticket | Es | Creado
- Bajo Acciones, agregue Notificar por > Webhook activo | Seleccione el webhook que creó.
- Copie y pegue el fragmento de código a continuación. Especifique su
Content
yEmail address
{
"ticket": {
"comment": {
"html_body": "Content",
"public": true
},
"recipient": "Email address"
}
}
- En Satisfacer TODAS las siguientes condiciones, agregue Ticket > Ticket | Es | Creado
Descargo de responsabilidad: Este artículo se ofrece con fines de instrucción únicamente. Zendesk no ofrece soporte para el código ni lo garantiza. Publique cualquier problema que tenga en la sección de comentarios o intente buscar una solución en Internet.
Descargo de responsabilidad de la traducción: Este artículo ha sido traducido usando software de traducción automática para proporcionar una idea básica del contenido. Se han realizado esfuerzos razonables para proporcionar una traducción exacta, sin embargo, Zendesk no garantiza la exactitud de la traducción.
Si surge alguna pregunta relacionada con la exactitud de la información incluida en el artículo traducido, consulte la versión en inglés del artículo, que es la versión oficial.
5 comentarios
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
Iniciar sesión para dejar un comentario.