Actions
Bug #8862
closedThe V2 API doesn't handle arrays of id/name of has_many relationships
Status:
Rejected
Priority:
Normal
Assignee:
-
Category:
API
Target version:
-
Description
According to the API V2 spec, you should be able to pass in an array of id/name hashes when models have a many-to-many or one-to-many relationship:
$ curl -k -u admin:changeme -H "Accept: version=2,application/json" \ -H "Content-Type: application/json" -X POST \ -d '{ "domains": [{ "name": "earendil", "id": 1}, { "name": "turgon", "id": 3 }] }' \ https://foreman.example.com/api/subnets/iluvatar
Katello doesn't support this. I think we can get this working relatively easy--just need to fix the setup_has_many_params filter.
Actions