getComponentRelatedIssues
Get component issues count
GET /rest/api/3/component/{id}/relatedIssueCounts HTTP/1.1Parameters
{
"id": {
"description": "The ID of the component.",
"required": true,
"location": "path",
"type": "string"
}
}Response Schema
{
"additionalProperties": false,
"description": "Count of issues assigned to a component.",
"properties": {
"issueCount": {
"description": "The count of issues assigned to a component.",
"format": "int64",
"readOnly": true,
"type": "integer"
},
"self": {
"description": "The URL for this count of issues for a component.",
"format": "uri",
"readOnly": true,
"type": "string"
}
},
"type": "object",
"xml": {
"name": "component"
}
}