Questions tagged [zendesk-sdk]
23 questions
3
votes
0 answers
Zendesk integration with Flutter
I am creating mobile app with flutter and I want to integrate Zendesk SDK using flutter as i have done research and i get to know that zendesk can not provide support to hybrid apps the only provide native SDK but still there are some plugins which…

Vishal Parmar
- 615
- 4
- 31
1
vote
2 answers
How to show suggested Articles or FAQs on Zen-desk using react-native-zendesk-chat
I want to show suggested Articles based on FAQs on mobile using
react-native-zendesk chat SDK. but I don't find there is any
option that helps to achieve this.
Quick help will be highly appreciated
Thanks

Muhammad Ashfaq
- 2,359
- 5
- 20
- 46
1
vote
1 answer
Pop Up "Zendesk Messaging Widget" After Certain Amount of Time
As we know that the zendesk Messaging Widget doesn't have proactive chat natively, after deep research I made this script to help anyone who wants the widget to pop a while after the website loads.
Hope it helps you!
var client =…

Ram Chander
- 1,088
- 2
- 18
- 36
0
votes
1 answer
Zendesk - Custom field change event not working
I am working on Zendesk server side App, There is a orderno custom filed in ticket form.
what i want to achieve is, get value of orderno when its value got changed.
Previously, I have achieve something similar as following.
if (client) {
…

Ram Chander
- 1,088
- 2
- 18
- 36
0
votes
1 answer
Zendesk - How do we can modify "subject" based on custom filed value (enter by user ) in new request form
In my request form, I have custom field orderno.
I want to concatenate the orderno with subject (that will be Ticket's Title).
Currently I have hide the subject field with jquery script and set some default…

Ram Chander
- 1,088
- 2
- 18
- 36
0
votes
1 answer
Zendesk - How to detect if I Change (before submit) Requester Name in opened Tickets?
I have a server side app, which display customer info such as name, id, email etc based on currently opened ticket.
My next task is to update the Requester name in Zendesk App ( server side app ) if i made changes in Ticket Requester before…

Ram Chander
- 1,088
- 2
- 18
- 36
0
votes
1 answer
How to debug an issue with Zendesk App as console.log is not working
topBarClient.request(settings).then(
function (data) {
console.log("data",data);
showTaskData(data);
if (data.status === 200) {
onSuccess(JSON.parse(data.responseText));
} else {
onFailure(data.status);
}
},
…

Akmal Ziyad
- 3
- 1