LANG SELRCT

Apps Script Reference  (Create: Create new Spreadsheet | Create new Apps Script

Saturday, August 31, 2019

zendeskで特定のテキストを説明に含むチケットをAPIで取得したい


「テスト」が説明に含まれるチケットを取得する例を書きました。

https://EXAMPLE.zendesk.com/api/v2/search.json?page=1&query=created%3E2019-01-01%20type:ticket%20description:テスト



リクエスト
https://EXAMPLE.zendesk.com/api/v2/search.json?
page=1&
query=created%3E2019-01-01%20
type:ticket%20
description:テスト
意訳
各自のzendeskの結果をJSONで返す
結果の1ページ目
created>2019-01-01
チケット
説明およびコメント内のテキスト


関連記事

zendeskで特定日以降のチケットをAPIで取得したい
zendeskで指定したグループのチケットをAPIで取得したい


参考

チケットの検索
https://support.zendesk.com/hc/ja/articles/203663206-%E3%83%81%E3%82%B1%E3%83%83%E3%83%88%E3%81%AE%E6%A4%9C%E7%B4%A2

Latest post

Creating a template copier app in Google Apps Script

Introduction This article will show you a template copier application in Google Apps Script.  This application will automatically copy a t...