I am trying to create an issue in Redmine (V 2.3.4) via RESTful. I've read the documentation and tried the example which didn't work (HTTP-Code: 404).
POST http://easyredmine.digitronic.com/issues.xml
<?xml version="1.0"?>
<issue>
<project_id>1</project_id>
<subject>Example</subject>
<priority_id>4</priority_id>
</issue>
Then I tried this and it worked:
POST http://easyredmine.digitronic.com/projects/isda/issues.xml
<?xml version="1.0"?>
<issue>
<project_id>1</project_id>
<subject>Example</subject>
<priority_id>4</priority_id>
</issue>
I am using the taskadapter Redmine API which sends requests in the first form.