Pesquisas recentes
Sem pesquisas recentes

Callum D
Entrou em 09 de jan. de 2023
·
Última atividade em 29 de dez. de 2023
Seguindo
0
Seguidores
0
Atividade total
10
Votos
1
Assinaturas
5
VISÃO GERAL DA ATIVIDADE
MEDALHAS
ARTIGOS
PUBLICAÇÕES
COMENTÁRIOS NA COMUNIDADE
COMENTÁRIOS EM ARTIGOS
VISÃO GERAL DA ATIVIDADE
Atividade mais recente por Callum D
Callum D comentou,
Yes, it is possible to provide end users with a log of their search history. This can be done by tracking and storing the search queries made by the user in a database associated with their account. The log can then be retrieved and displayed on their profile page or as they search. The implementation details of such a feature would depend on the specifics of the website, including the technology stack and the data storage solution being used.
Exibir comentário · Publicado 06 de fev. de 2023 · Callum D
0
Seguidores
0
Votos
0
Comentários
Callum D comentou,
Yes, it is possible to automatically assign a field in Zendesk based on the requester's email domain. You can achieve this by creating a trigger in Zendesk that matches the incoming email address and sets the corresponding value in the 'Agency/Customer' field.
Here's a step-by-step guide to create the trigger:
- Go to the Zendesk Admin interface
- Navigate to the Triggers section
- Click on the "Add trigger" button
- Give the trigger a name, e.g. "Assign Agency/Customer based on email domain"
- In the "Meet all of the following conditions" section, select "Ticket is created" as the trigger event.
- Add a new condition "Ticket: Requester email" and specify the pattern that matches.
I think this will answer your question.
Exibir comentário · Publicado 06 de fev. de 2023 · Callum D
0
Seguidores
3
Votos
0
Comentários
Callum D criou uma publicação,
I'm creating a test suite for our Zendesk apps, and testcafe works ok in our settings but not with a local zat server. When a developer wishes to test a change, they will create and run the app within a zat server, which will communicate with the Zendesk instance selected, and when?zat=true is attached to the URL, the local app modifications will be loaded. The updates do not appear to load in Testcafe, and there is no contact with the zat server. Pull requests must include a zat server to test changes before they are merged with other environments. I realise this is a very unique issue, however
Publicado 19 de jan. de 2023 · Callum D
1
Seguidor
2
Votos
1
Comentário
Callum D criou uma publicação,
I need to display the user's name in the Zendesk chat (for the agents), and I'm using the Zendesk code:
window.zESettings = {
webWidget: {
authenticate: {
chat: {
jwtFn: function(callback) {
fetch('JWT_TOKEN_ENDPOINT').then(function(res) {
res.text().then(function(jwt) {
callback(jwt);
});
});
}
}
}
}
};
and the jwt token is as follows:
var payload = {
name: '#{customerName}',
email: '#{customerEmail}',
iat: #{timestamp},
external_id: '#{externalId}'
};
var token = jwt.sign(payload, '#{yourSecret}');
The code does not function, and there are no problems, but the user name is not shown. The Zendesk manual is devoid of useful information; has anyone incorporated Zendesk into their app? What am I doing incorrectly? Any assistance and suggestions are much welcomed.
Publicado 09 de jan. de 2023 · Callum D
0
Seguidores
3
Votos
1
Comentário