Skip to content
R-Service R-Service
RR Tech Service Management Developer Guide

Tasks - Successors API

List all successors of a task with a specific ID:

GET /tasks/:id/successors
Status: 200 OK
[
{
"created_at": "2016-03-14T03:14:17-06:00",
"category": "implementation",
"finished_at": null,
"sourceID": null,
"updated_at": "2016-03-14T03:14:17-06:00",
"member": {
"name": "Barney Turban",
"id": 58
},
"subject": "Inform approvers and requesters of the completion of the workflow",
"id": 95,
"impact": "none",
"team": {
"name": "Windows Servers",
"id": 14
},
"status": "registered",
"completion_target_at": "2016-03-15T16:33:00-06:00"
},
"..."
]

The response contains these fields by default.

Add a successor link between a task with a specific ID and another task with a specific ID.

POST /tasks/:id/successors/:task_id
Status: 200 OK
{}

Remove the successor link between a task with a specific ID and another task with a specific ID.

DELETE /tasks/:id/successors/:task_id
Status: 204 No Content

Remove all successor links between a task with a specific ID and its successors.

DELETE /tasks/:id/successors
Status: 204 No Content