最近の検索


最近の検索はありません

Denis Tataurov's Avatar

Denis Tataurov

参加日2023年8月04日

·

前回のアクティビティ2024年6月26日

フォロー中

0

フォロワー

0

合計アクティビティ

14

投票

3

受信登録

4

アクティビティの概要

さんの最近のアクティビティ Denis Tataurov

Denis Tataurovさんが投稿を作成しました:

投稿 Developer - Zendesk APIs

Hello Zendesk,

 

Are there any plans to provide webhook events for the job status updates?

 

Thanks!

投稿日時:2024年6月26日 · Denis Tataurov

0

フォロワー

1

投票

1

コメント


Denis Tataurovさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk APIs

Hi Charles Nadeau!

That's what I actually do right now. But it may be not a good in terms of UX. For example, there may be 20 comments returned: 3 are public and 17 are private. Hopefully it may be not visible for the end user (filtering doesn't break cursor pagination values) but could be confusing if the percentage of private comments is high

コメントを表示 · 投稿日時:2023年8月29日 · Denis Tataurov

0

フォロワー

1

投票

0

コメント


Denis Tataurovさんが投稿を作成しました:

投稿 Developer - Zendesk APIs

The API for retrieving comments doesn't allow to show only public comments. It will be nice to have such ability. Currently there may be gaps in the response of public comments because there may be some private ones in between that should be filtered out from the response.

編集日時:2023年8月28日 · Denis Tataurov

1

フォロワー

3

投票

3

コメント


Denis Tataurovさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk APIs

Hello, I have the same request as Saurav. It's quite confusing when a resource doesn't have its identifier. Of course there are plenty of workarounds but it doesn't make it easier as there may be id mismatches further in the business flow.

It will be very helpful to expose id of any Zendesk resource that may be specified in the webhook template

コメントを表示 · 投稿日時:2023年8月18日 · Denis Tataurov

0

フォロワー

0

投票

0

コメント


Denis Tataurovさんがコメントを作成しました:

コミュニティのコメント Q&A - Apps and integrations

This should work for your Ruby on Rails app:

# First calculate it (don't forget to set ZENDESK_WEBHOOK_SECRET env)
sign = Base64.encode64(
OpenSSL::HMAC.digest(
'SHA256',
ENV['ZENDESK_WEBHOOK_SECRET'],
request.headers['HTTP_X_ZENDESK_WEBHOOK_SIGNATURE_TIMESTAMP'] + request.body.read
)
).strip

# Then compare it with the one from request headers
sign == request.headers['HTTP_X_ZENDESK_WEBHOOK_SIGNATURE']

コメントを表示 · 投稿日時:2023年8月18日 · Denis Tataurov

0

フォロワー

0

投票

0

コメント


Denis Tataurovさんがコメントを作成しました:

コミュニティのコメント Developer - Zendesk APIs

Found some ways to constantly generate error when creating a ticket:

  • produce invalid data. For example, make subject/first comment short or empty
  • create ticket on behalf of suspended user

 

コメントを表示 · 投稿日時:2023年8月07日 · Denis Tataurov

0

フォロワー

0

投票

0

コメント


Denis Tataurovさんが投稿を作成しました:

投稿 Developer - Zendesk APIs

Hello, I'm struggling to find a way to get a constant response from Zendesk API with specific error. I want it to make sure my app's tests are deterministic and not fragile. I know other services which provide some test data taht triggers specific response errors.

Is there something like that in the Zendesk API? I didn't find it in the documentation but maybe it is not documented yet. I'm interested in Ticketing API right now but actively extend Zendesk's usage.

Thanks in advance!

投稿日時:2023年8月04日 · Denis Tataurov

0

フォロワー

1

投票

1

コメント