Pesquisas recentes


Sem pesquisas recentes

Nathan van Jole's Avatar

Nathan van Jole

Entrou em 22 de mai. de 2023

·

Última atividade em 09 de out. de 2023

Seguindo

0

Seguidores

0

Atividade total

21

Votos

3

Assinaturas

6

VISÃO GERAL DA ATIVIDADE

Atividade mais recente por Nathan van Jole

Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

Bump... Erica Girges

Exibir comentário · Editado 09 de out. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

Anyone?

Exibir comentário · Publicado 22 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

The locale needs to be in lowercase. In this line:

endpoint = zendesk + '/api/v2/help_center/en-US/articles.json'.format(locale=language.lower())

You hardcoded the "en-US" which should be replaced with "{locale}". Also make sure to set the language variable to "en-US" instead "en_US" (with underscore).

Hope this helps!

Exibir comentário · Publicado 20 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

We are using the Authorization code grant flow as described here:

https://developer.zendesk.com/documentation/live-chat/getting-started/auth/#authorization-code-grant-flow

Managed to implement this without any issues. The resulting bearer token works fine, and all API calls I make are successful.

However the chats response is always empty. For context, I have a Zendesk developer account and I tried creating a "chat" by using the Messaging Chat Widget which I found here:
https://subdomain.zendesk.com/admin/channels/messaging_and_social/channels_list
Is that the correct approach? Should chats made in that widget be showing up in the API response? I'd assume so.

I'm also quite confused about what the difference is between Zendesk Chat and Zendesk Conversations.

 

Exibir comentário · Publicado 20 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

No problem, I've been there before

Exibir comentário · Publicado 20 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

If you navigate to https://developer.zendesk.com/api-reference/ticketing/introduction/ you will find the API for o.a. Users, Tickets, Organisations in the left side navigation.

Exibir comentário · Publicado 18 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

The query parameter should be "client_id" instead of "clientid" which is causing the error.

Exibir comentário · Editado 18 de set. de 2023 · Nathan van Jole

0

Seguidores

0

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

Another solution would be to have a repeating background job that retrieves all tickets that match the criteria and sends the emails. This would mean however, that you will have to keep track of which tickets you already processed.

Exibir comentário · Publicado 18 de set. de 2023 · Nathan van Jole

0

Seguidores

1

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

So it seems like you accomplished it using automations, but the only limitation is that the minimum hours since created is 1 hours.

It doesn't feel right in that case to create a custom solution using webhooks - but you could. Or you could submit a request to Zendesk to allow to specify the time in minutes.

The custom solution would look something like:

- Trigger webhook when ticket gets created
- Wait for e.g. 15 minutes
- Retrieve the ticket again (through the Zendesk API)
- Check if the ticket matches the conditions you listed (ticket tag, group, status, assignee)
- If ticket matches the conditions, send email to customer

You could use a long running serverless function which can get expensive depending on the load of tickets. Or you could ask an expert to implement a custom solution (e.g. using a state machine)

Exibir comentário · Publicado 18 de set. de 2023 · Nathan van Jole

0

Seguidores

1

Votos

0

Comentários


Nathan van Jole comentou,

Comentário na comunidade Developer - Zendesk APIs

You can setup a webhook to call an API when a new ticket has been created. In the API you can wait 10/20 minutes and then do whatever you want. 

Exibir comentário · Publicado 17 de set. de 2023 · Nathan van Jole

0

Seguidores

1

Votos

0

Comentários