Creating a Tracker Item
POST /v3/trackers/{trackerId}/items will create a tracker item on a specific tracker.
Each mandatory field must be provided.
Request body example:
{
"name": "Implement car software",
"storyPoints": 5,
"priority": {
"id": 2,
"name": "High",
"type": "ChoiceOptionReference"
},
"subjects": [
{
"id": 1007,
"name": "As User, I want to have a software in my car, which is easy to use",
"type": "TrackerItemReference"
}
]
}
Response example:
{
"id": 1335,
"name": "Implement car software",
"descriptionFormat": "PlainText",
"createdAt": "2020-08-05T13:54:43.941",
"createdBy": {
"id": 1,
"name": "bond",
"type": "UserReference"
},
"modifiedAt": "2020-08-05T13:54:43.941",
"modifiedBy": {
"id": 1,
"name": "bond",
"type": "UserReference"
},
"version": 1,
"assignedTo": [],
"storyPoints": 5,
"tracker": {
"id": 4308,
"name": "Tasks",
"type": "TrackerReference"
},
"children": [],
"customFields": [],
"priority": {
"id": 2,
"name": "High",
"type": "ChoiceOptionReference"
},
"status": {
"id": 1,
"name": "New",
"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": [],
"versions": [],
"ordinal": 15,
"typeName": "Task",
"comments": []
}