1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

Redmineでカテゴリーidを知る方法

Posted at

この記事は?

Python-Redmineを使ってチケットを作るスクリプトを書いているときに、カテゴリーを指定するcategory_idをどうやって調べればいいかわからなかったのでメモ。

GUI上ではこんな感じでカテゴリ名以外の情報を得ることができない。
設定_-_test_-_Redmine.png

やり方

やっぱり公式ドキュメント読むのが一番
こちらにかいてあるが簡単に調べるにはブラウザ上で

${REDMINE_URL}/projects/${PROJECT_NAME}/issue_categories.xml

# ${REDMINE_URL}には使っているRedmineのURLが入る
# ${PROJECT_NAME}には知りたいカテゴリが登録されているプロジェクト名が入る

のようなURLを叩くと以下のようなXMLが出力される

<issue_categories total_count="1" type="array">
<issue_category>
<id>1</id>
<project id="1" name="test"/>
<name>test_category</name>
</issue_category>
</issue_categories>

この場合は、test_categorycategory_idになる。

以上

1
2
0

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
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?