Project

General

Profile

Adding a note via Redmine API

Added by Andrew Bayly over 11 years ago

I am trying add a note containing text to an existing issue in Redmine using the REST API. I have looked through the information on the Redmine APIs http://www.redmine.org/projects/redmine/wiki/Rest_api

However it doesn't mention how to add a note to a existing Redmine issue. I was wondering if anyone knows if this is possible and if so how to do it?

Thanks in advance


Replies (1)

RE: Adding a note via Redmine API - Added by Attila Bujáki over 11 years ago

Hi!

I am not sure that I got what you exactly wanted to do.
Would you like to change note for an existing issue?

This can be done using PUT method. It is described in the REST API documentation.

PUT /issues/[id].json
{
    "issue": {
      "notes": "Changing the subject" 
    }
}

This way you can add note to an issue with specified ID.
(I haven't used this feature before, I think this should be working like this.)

    (1-1/1)