最近の検索
最近の検索はありません

Stefan Dao
参加日2021年10月16日
·
前回のアクティビティ2023年12月28日
フォロー中
0
フォロワー
0
合計アクティビティ
16
投票
5
受信登録
4
アクティビティの概要
バッジ
記事
投稿
コミュニティへのコメント
記事へのコメント
アクティビティの概要
さんの最近のアクティビティ Stefan Dao
Stefan Daoさんが投稿を作成しました:
Based on the documentation below, we should be able to pass category_id as a query param to this endpoint. However, the endpoint returns all active triggers and not just the ones associated with my category_id.
https://developer.zendesk.com/api-reference/ticketing/business-rules/triggers/#list-active-triggers
投稿日時:2022年4月28日 · Stefan Dao
0
フォロワー
4
投票
4
コメント
Stefan Daoさんがコメントを作成しました:
Hi @..., I noticed that when I @mention someone on Zendesk, the text is rendered as:
This is a sample mention of **User's Name**
in the placeholder. We're essentially swapping the mention out for bolded text. Is there a way we can preserve that mention so we can accurately look up via some ID who the mentioned user is?
コメントを表示 · 投稿日時:2022年1月27日 · Stefan Dao
0
フォロワー
0
投票
0
コメント
Stefan Daoさんが投稿を作成しました:
As part of my webhook event whenever a ticket is created/updated, I'm trying to send a JSON response that mirrors what I would receive when I do a GET request to the `api/v2/tickets/` endpoint.
Is it possible to do something like this:
{ "ticket": {{ticket}} }
Or if I had to recreate the whole response, it'd be nice if the following:
{ "ticket": {
"comments": "{{ticket.comments}}"
}
}
would give me a proper list of ticket comments as opposed to a string List. It's making processing on my end extremely difficult and I'm wondering if there's any way to fix this
投稿日時:2022年1月27日 · Stefan Dao
1
フォロワー
2
投票
2
コメント
Stefan Daoさんが投稿を作成しました:
I'm trying to setup a webhook to get notified on all new comments for a Ticket. I'd like to have the id, comment, and comment author to be sent via JSON to my webhook. Right now I have it somewhat working with the following body:
{
"id": "{{ticket.id}}",
"comment": "{{ticket.comments[0]}}",
}
But unfortunately something like this doesn't work:
{
"id": "{{ticket.id}}",
"comment": "{{ticket.comments[0].body}}",
"author": "{{ticket.comments[0].author_id}}",
}
投稿日時:2021年10月01日 · Stefan Dao
1
フォロワー
7
投票
7
コメント