
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
How to relate (by relation) a automated test to a manual test by REST API
I want to link my automated test to manual by relation through REST API ,Is there any API for that?
I found below API
Payload:
{
"covered_content": {
"data": [
{
"type": "string",
"id": "string"
}
]
},
"backlog_coverage": {
"data": [
{
"type": "string",
"id": "string"
}
]
}
can we use it if yes then how ?
Regards
Nazim

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Email to a Friend
- Report Inappropriate Content
currently, saas version is 15.0.60.
on this version you can perform from TECH PREVIEW access level:
PUT Request: https://alm-360.octane.internal.ericsson.com/api/shared_spaces/<space_id>/workspaces/<workspace_id>/tests
Body:
{"data":[{"covered_manual_test": {"id": "<manual_test_id>", "type": "test" } , "id":"<automated_test_id>" }]}
This will set the “covered_manual_test” field of the automated test to the given manual test id
And also will set the “covering_automated_test” field of the manual test to the given automated test id.
note this will only work if you use the TECH PREVIEW access level.
from version 15.1.4 that will be released as the next saas version, you will be able perform from PUBLIC access level:
Put request: https://alm-360.octane.internal.ericsson.com/api/shared_spaces/<space_id>/workspaces/<workspace_id>/manual_tests/<manual_test_id>
Body: {"covering_automated_test":{"type":"test","id":"<automated_test_id>"}}
Hope this helps,
Oded