最近搜索


没有最近搜索

richestsoft dev's Avatar

richestsoft dev

已加入2022年7月19日

·

最后活动2022年8月01日

关注

0

关注者

1

活动总数

15

投票

3

订阅

4

活动概览

的最新活动 richestsoft dev

richestsoft dev 创建了一个帖子,

帖子 Q&A - Sales CRM (Sell)

In my form field, When new ticket is getting created I want to make a field readable only for agents. Once ticket is created it can be edited by agent.

is that possible?

已于 2022年8月01日 编辑 · richestsoft dev

0

关注者

2

投票

1

Comment


richestsoft dev 进行了评论,

社区评论 Q&A - Apps and integrations

Thank you so much for the response.
Is that also possible, can we redirect to some URL after form submission?

查看评论 · 已于 2022年7月28日 发布 · richestsoft dev

0

关注者

0

投票

0

评论


richestsoft dev 创建了一个帖子,

帖子 Q&A - Apps and integrations

Hi Everyone. 
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 value.

 $('.form-field.string.required.request_subject').hide(); // Hide subject 
 $('#request_subject').val('Insurance new request no:'); // Autofill subject


What I want to achieve is when user submit the request form the order no which is enter by user should be included in subject.

e.g.

orderno= 12124

subject should be like "Insurance new request no:12124"

Is this possible ? or what can be best alternate for this

已于 2022年7月28日 发布 · richestsoft dev

1

关注者

4

投票

3

评论


richestsoft dev 进行了评论,

社区评论 Developer - Zendesk SDKs

Update

 

the following worked for me.

if (client) {
    client.on('ticket.requester.name.changed', function(e) {
        console.log("name is :", e)
}); }

 

查看评论 · 已于 2022年7月26日 发布 · richestsoft dev

0

关注者

0

投票

0

评论


richestsoft dev 进行了评论,

社区评论 Developer - Zendesk SDKs

I am sharing my script what i am trying to do.

Its a server side app developed in nextJs

const [requesterName, setRequesterName] = useState(null);
const getRequester = async (client) => {
const requester = await client.get("ticket.requester");
const _requesterName = requester['ticket.requester'].name;
console.log(_requesterName);
setRequesterName(_requesterName)
};
 
var client = ZAFClient.init();
getRequester(client);
the function getRequester(client) is getting called onLoad

in the html section

<p>{requesterName}</p>

查看评论 · 已于 2022年7月26日 编辑 · richestsoft dev

0

关注者

0

投票

0

评论


richestsoft dev 进行了评论,

社区评论 Developer - Zendesk SDKs

Thank you for you response.
This is not working for me when I change requester name.

查看评论 · 已于 2022年7月26日 编辑 · richestsoft dev

0

关注者

0

投票

0

评论


richestsoft dev 创建了一个帖子,

帖子 Developer - Zendesk SDKs

Hi everyone,

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 submit.

is that possible?

已于 2022年7月25日 发布 · richestsoft dev

0

关注者

3

投票

5

评论


richestsoft dev 创建了一个帖子,

帖子 Developer - Zendesk Apps Framework (ZAF)

I have an app which is server side. my task is to read and display data from on currently opened tickets in my server side app.

is it possible? or what can be best solution for doing this?
Thanks

已于 2022年7月19日 发布 · richestsoft dev

0

关注者

3

投票

1

Comment