LoginSignup
1
1

More than 5 years have passed since last update.

curlでRedmineのチケット一覧を取得

Posted at

メモ

REDMINE_API_URL="hogehoge"
REDMINE_API_KEY="hogehoge"

REDMINE_TICKET_GET_COUNT=1

ticket_list=`curl -s "${REDMINE_API_URL}/issues.json?limit=${REDMINE_TICKET_GET_COUNT}&key=${REDMINE_API_KEY}" | /usr/local/bin/jq '.issues[] | {id,subject}'`
1
1
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1