最近搜索


没有最近搜索

Karun Kamal's Avatar

Karun Kamal

已加入2023年9月01日

·

最后活动2024年3月04日

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

关注

0

关注者

0

活动总数

15

投票

6

订阅

2

活动概览

的最新活动 Karun Kamal

Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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 ⬆️

查看评论 · 已于 2023年12月11日 发布 · Karun Kamal

0

关注者

1

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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. 

查看评论 · 已于 2023年12月11日 编辑 · Karun Kamal

0

关注者

0

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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");
})

查看评论 · 已于 2023年12月10日 编辑 · Karun Kamal

0

关注者

0

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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 ?

查看评论 · 已于 2023年12月10日 发布 · Karun Kamal

0

关注者

0

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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

查看评论 · 已于 2023年12月08日 发布 · Karun Kamal

0

关注者

0

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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!

查看评论 · 已于 2023年11月30日 发布 · Karun Kamal

0

关注者

0

投票

0

评论


Karun Kamal 进行了评论,

社区评论 Developer - Zendesk Apps Framework (ZAF)

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!

查看评论 · 已于 2023年11月27日 发布 · Karun Kamal

0

关注者

0

投票

0

评论