Defect #29128
openAPI: Issue Relation create does not work
0%
Description
using postman /issues/15658/relations.json
with headers
- Content-Type:application/json
- X-Redmine-API-Key:...
and payload
{ "relations": [ { "issue_id":"15657", "relation_type":"follows", "delay": 0 } ] }
always returns 422 with error message
{ "errors": [ "Related issue cannot be blank" ] }
what is wrong here, i tried mulitple structures. API documentation for issue relation is very unclear about that.
Updated by Mizuki ISHIKAWA over 6 years ago
Could you please change it as follows and try it out.
With my environment this worked out.
{ "relation": { "issue_to_id":"15657", "relation_type":"follows", "delay": 0 } }
Updated by Marius BÄ‚LTEANU over 6 years ago
- Status changed from New to Needs feedback
- Assignee set to Eser Esen
Updated by Eser Esen over 6 years ago
Yes it worked, but does that mean, i cannot add multiple relations with one shot? looking at the api doc it looks like it is handling arrays of relations.
Thanks
Updated by Mizuki ISHIKAWA over 6 years ago
Thank you for your confirmation.
I read the code, but the current Issue Relation create API seems not to support to multiple structures.
Eser Esen wrote:
Yes it worked, but does that mean, i cannot add multiple relations with one shot? looking at the api doc it looks like it is handling arrays of relations.
Could you tell me the URL of the api document it looks like it is handling arrays of relations? I could not find it.
Also, I thought that the title of this issue was better for "API: Multiple Issue Relation create does not work".
Updated by Eser Esen over 6 years ago
Hi the URL is https://www.redmine.org/projects/redmine/wiki/Rest_IssueRelations
Looking at it again, the GET method actually returns arrays, while the POST one fits to the one you provided.
Would be good, if someone could add xml/json examples.