Búsquedas recientes
No hay búsquedas recientes

Karun Kamal
Incorporación 01 sept 2023
·
Última actividad 04 mar 2024
Hello there, I am Karun, Zendesk Alumni. I build web applications and love improving Customer Experiences. For zendesk: I can build: - Custom Apps / Integrations / Automations / Bots - Zendesk Integration Services - Customer Support design and Setup - Guide Theme customisation - Messaging Setup Reach out me at Linkedin: https://linkedin.com/in/karunkamal or visit https://karunkamal.com
Seguimientos
0
Seguidores
0
Actividad total
15
Votos
6
Suscripciones
2
RESUMEN DE LA ACTIVIDAD
INSIGNIAS
ARTÍCULOS
PUBLICACIONES
COMENTARIOS DE LA COMUNIDAD
COMENTARIOS DE ARTÍCULOS
RESUMEN DE LA ACTIVIDAD
Última actividad de Karun Kamal
Karun Kamal hizo un comentario,
Yes, I did had scenario in mind (among others) and good news 🎉 its possible.
You can use client.invoke function with routeTo feature as described here with an example of navigation to the location in question. This could e triggered from any location your app reside in (for e.g. from genesys app top_bar location).
Cheers!
If it helped? vote up ⬆️
Ver comentario · Publicado 11 dic 2023 · Karun Kamal
0
Seguidores
1
Voto
0
Comentarios
Karun Kamal hizo un comentario,
Yes, you are on the right track. Zendesk inbound webhook will create job of your custom ZIS Integration. Within that integration you can call create ticket api action which will create ticket for you everytime webhook is called.
Ver comentario · Editado 11 dic 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios
Karun Kamal hizo un comentario,
The basis of triggering custom events on a zaf_client is that those events need to be on the same client instance.
You can get client instances of same app in different locations and transfer data amongst them.
differentLocationClientPromise = client.instance();
differentLocationClientPromise.then((differentLocationClient) => {
differentLocationClient.trigger("open_flex_popover");
})
Ver comentario · Editado 10 dic 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios
Karun Kamal hizo un comentario,
Hi there Ismail,
Your question doesn't have any details. For e.g. It isn't clear which app are you trying to open, in what location ? What event are you trying to act upon ?
Ver comentario · Publicado 10 dic 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios
Karun Kamal hizo un comentario,
Hi Anish and Aakanksha
Apologies when i answered first i didnt see these many detail requirements. You seem to have a complex one, where you want to be able to poll dummysaas and then create tickets in zendesk based on the api response.
Its certainly possible but some considerations for you to think about
1. zendesk custom app is frontend browser only.
2. ZIS is integration which reacts/trigger to certain events to zendesk objects (and custom events)
- The scheduled calls should not be triggered in custom app in the agent view. If the browser is closed then the app isnt running anymore.
I would encourage you to breakdown the requirement to just the problem you are unable to solve and reach out to support via zendesk messaging widget
Ver comentario · Publicado 08 dic 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios
Karun Kamal hizo un comentario,
Hi Anish
Yes you can certainly build a marketplace app with the description you gave above. Some helpful resource include:
1. https://developer.zendesk.com/api-reference/apps/introduction/
Here you can read above ZAF client on how to make requests.
2. https://developer.zendesk.com/documentation/apps/app-developer-guide/manifest/
Here you can understand how settings can be added to the app.
Cheers!
Ver comentario · Publicado 30 nov 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios
Karun Kamal hizo un comentario,
Hello 이상우
The way to transfer any data from one app location to another is by using the zafClient events.
1. You can registered a custom event on any locations (say `ticket_sidebar`).
2. You get the clientInstance of other location (say `nav_bar`) and then fire that custom event with data (on nav_bar zafClient).
3. Have the client `on` custom event handler within `nav_bar`
Hope this helps!
Ver comentario · Publicado 27 nov 2023 · Karun Kamal
0
Seguidores
0
Votos
0
Comentarios