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%20group:GROUPNAME



リクエスト
https://EXAMPLE.zendesk.com/api/v2/search.json?
page=1&
query=created%3E2019-01-01%20
type:ticket%20
group:GROUPNAME
意訳
各自のzendeskの結果をJSONで返す
結果の1ページ目
created>2019-01-01
チケット
グループ名


関連記事

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

Extracting data from Google Sheets with regular expressions

Introduction Regular expressions are a powerful tool that can be used to extract data from text.  In Google Sheets, regular expressions ca...