POST

Post responsibility latest brokenBuild {planResultKeyOrPlanKey} {name}

Add a responsible user for broken build.

Request

Path parameters

name

string

Required
planResultKeyOrPlanKey

string

Required

Responses

Successfully added user as responsible or user is already responsible for broken build

POST/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}/{name}
1 2 curl --request POST \ --url 'http://{baseurl}/rest/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}/{name}'
DEL

Delete responsibility latest brokenBuild {planResultKeyOrPlanKey} {name}

Remove user's responsibility from broken build.

Request

Path parameters

name

string

Required
planResultKeyOrPlanKey

string

Required

Responses

Successfully removed user as responsible or user was not responsible for broken build

DEL/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}/{name}
1 2 curl --request DELETE \ --url 'http://{baseurl}/rest/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}/{name}'
GET

Get responsibility latest brokenBuild byUser {name}

Get broken builds for user.

Request

Path parameters

name

string

Required

Query parameters

showAllResponsible

string

Responses

List of plan keys with responsible users

application/json

object
GET/responsibility/latest/brokenBuild/byUser/{name}
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/responsibility/latest/brokenBuild/byUser/{name}' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "self": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=25", "prev": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=0", "next": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=50", "start": 25, "limit": 25, "results": [ { "responsibleUsers": [ { "assignedUser": "<string>", "assignedBy": "<string>" } ], "planResultKey": "PROJ-PLAN-2" } ] }
GET

Get responsibility latest brokenBuild myBrokenBuilds

Get broken builds for logged in user.

Request

This request has no parameters.

Responses

List of plan keys with responsible users

application/json

object
GET/responsibility/latest/brokenBuild/myBrokenBuilds
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/responsibility/latest/brokenBuild/myBrokenBuilds' \ --header 'Accept: application/json'
200Response
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 { "self": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=25", "prev": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=0", "next": "http://localhost:8085/rest/api/latest/../paginate?limit=25&start=50", "start": 25, "limit": 25, "results": [ { "responsibleUsers": [ { "assignedUser": "<string>", "assignedBy": "<string>" } ], "planResultKey": "PROJ-PLAN-2" } ] }
GET

Get responsibility latest brokenBuild {planResultKeyOrPlanKey}

Get responsible users for broken build result or plan.

Request

Path parameters

name

string

Required
planResultKeyOrPlanKey

string

Required

Responses

Plan key with responsible users

application/json

any

GET/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}
1 2 3 curl --request GET \ --url 'http://{baseurl}/rest/responsibility/latest/brokenBuild/{planResultKeyOrPlanKey}' \ --header 'Accept: application/json'

Rate this page: