Getting the Details of a Tracker Item
GET /v3/items/{itemId} will return detailed information about a tracker item.
Response example:
{
"id": 1046,
"name": "Implement car software",
"descriptionFormat": "Wiki",
"createdAt": "2020-08-04T10:53:49.963",
"createdBy": {
"id": 1,
"name": "bond",
"type": "UserReference"
},
"modifiedAt": "2020-08-04T10:53:49.963",
"modifiedBy": {
"id": 1,
"name": "bond",
"type": "UserReference"
},
"version": 1,
"assignedTo": [
{
"id": 2,
"name": "Developer",
"type": "RoleReference"
}
],
"storyPoints": 5,
"tracker": {
"id": 4308,
"name": "Tasks",
"type": "TrackerReference"
},
"children": [],
"customFields": [
{
"fieldId": 1006,
"name": "Occurrence",
"values": [
{
"id": 2,
"name": "Often",
"type": "ChoiceOptionReference"
}
],
"type": "ChoiceFieldValue"
},
{
"fieldId": 10001,
"name": "Detected On Date",
"value": "2020-08-10T09:00:00.000",
"type": "DateFieldValue"
}
],
"priority": {
"id": 2,
"name": "High",
"type": "ChoiceOptionReference"
},
"status": {
"id": 3,
"name": "In progress",
"type": "ChoiceOptionReference"
},
"subjects": [
{
"id": 1007,
"name": "As User, I want to have a software in my car, which is easy to use",
"type": "TrackerItemReference"
}
],
"resolutions": [],
"severities": [],
"teams": [
{
"id": 1127,
"name": "Developer Team",
"type": "TrackerItemReference"
}
],
"tags": [
{
"createdAt": "2022-08-04T13:53:40.796Z",
"createdBy": {
"id": 0,
"name": "string",
"type": "string",
"email": "string"
},
"hidden": true,
"id": 0,
"name": "string",
"privateLabel": true
}
],
"versions": [
{
"id": 1001,
"name": "Sprint 1.1",
"type": "TrackerItemReference"
}
],
"ordinal": 6,
"typeName": "Task",
"comments": []
}
* 
Tracker Item fields including tags, children or comments are read only. For more information, see the Codebeamer Swagger API UI documentation.
Was this helpful?