Add Issue Relation
POST
/issue/add-relationshipRequest
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
issueId
integer <int64>
required
Issue ID
linkedIssueId
integer <int64>
required
Related Issue ID
type
string
required
Relation Type,RELATES_TO(Relates),PARENT(Parent),CHILD(Child),BLOCKS(Blocks),IS_BLOCKS_BY(Blocked By),CAUSES(Causes),IS_CAUSED_BY(Caused By),REPEAT(Repeat),DUPLICATES(Duplicates),IS_DUPLICATES_BY(Duplicates By)
Example
{
"issueId": 1,
"linkedIssueId": 1,
"type": "RELATES_TO"
}
Request samples
Responses
OK(200)
HTTP Code: 200
Content Type : JSONapplication/json
Data Schema
success
boolean
optional
success
Example
{
"code": "0",
"data": {
"success": true
}
}
Last modified: 7 months ago