Bug 1416146
| Summary: | cannot reference parent_service with href when creating new service via REST API | ||
|---|---|---|---|
| Product: | Red Hat CloudForms Management Engine | Reporter: | Martin Kourim <mkourim> |
| Component: | API | Assignee: | Gregg Tanzillo <gtanzill> |
| Status: | CLOSED ERRATA | QA Contact: | Martin Kourim <mkourim> |
| Severity: | medium | Docs Contact: | |
| Priority: | medium | ||
| Version: | 5.7.0 | CC: | dajohnso, jhardy, jtullo, obarenbo, simaishi |
| Target Milestone: | GA | ||
| Target Release: | 5.8.0 | ||
| Hardware: | Unspecified | ||
| OS: | Unspecified | ||
| Whiteboard: | api:rest:service | ||
| Fixed In Version: | 5.8.0.3 | Doc Type: | If docs needed, set a value |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2017-05-31 14:33:28 UTC | Type: | Bug |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
This was resolved via https://github.com/ManageIQ/manageiq/pull/14087 Verified on 5.8.0.8-alpha1 that it's possible to reference parent service using "href". Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHSA-2017:1367 |
Description of problem: When creating new service via REST API the request fails when "parent_service" is "href" reference to existing service: { "error": { "kind": "bad_request", "message": "Missing Service identifier id", "klass": "Api::BadRequestError" } } According to http://manageiq.org/docs/reference/latest/api/reference/services#services both "href" and "id" should be accepted. Request is successful when "parent_service" is "id" reference to existing service. Version-Release number of selected component (if applicable): 5.7.0.17 How reproducible: 100% Steps to Reproduce: 1. create service 2. create service via REST API POST /api/services { "action" : "create", "resource" : { "name" : "test_service", "description" : "Test Service", "parent_service" : { "href" : "https://<address>/api/services/:id" } } }