3
3

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.

cURLでRedmineのIssueを更新する

Last updated at Posted at 2012-11-19
curl [REDMINE_HOME]/issues/[ID].json?key=xxxxxxxxxxxxxxxxxxxxxxxxxxxx  -H "Accept: application/json" -H "Content-type: application/json" -X PUT -d '{"issue": {"subject": "IF_YOU_NEED_TO_CHANGE_SUBJECT","notes": "UPDATE_MESSAGE" }}' -k

-d 以降のJSONで Subjectとnotesを変更可能。issueを更新したいだけならnotesのjsonだけ
にすれば良い。(だいたいそれでOKだと思われる)

-k はオレオレSSL証明書の場合無視するためのもの

3
3
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
3
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?