GET /products/:id/stories
Get product story list
Request header
Name |
Type |
Mandatory fields |
Description |
Token |
String |
Yes |
Authentication credentials Token |
Request response
Name |
Type |
Mandatory fields |
Description |
page |
int |
Yes |
current page |
total |
int |
Yes |
total number of story |
limit |
int |
Yes |
the number of story per page |
stories |
array |
Yes |
story list |
∟ id |
int |
Yes |
story ID |
∟ product |
int |
Yes |
affiliated product |
∟ branch |
int |
Yes |
affiliated branch |
∟ module |
int |
Yes |
affiliated product module |
∟ fromBug |
int |
Yes |
from bug |
∟ source |
string |
Yes |
story source(customer | user| PO| market) |
∟ sourceNote |
string |
Yes |
source comment |
∟ title |
string |
Yes |
story title |
∟ category |
string |
Yes |
type(feature | interface | performance | safe | experience | improve | other) |
∟ stage |
string |
Yes |
stage(wait | planned | projected | developing | developed | testing | tested | verified | released |closed) |
∟ pri |
int |
Yes |
priority |
∟ estimate |
int |
Yes |
estimated hours |
∟ status |
string |
Yes |
status(draft | active | closed | changed) |
∟ openedBy |
user |
Yes |
create by |
∟ openedDate |
datetime |
Yes |
create time |
∟ toBug |
int |
Yes |
to bug |
Response example
"page": 1,
"total": 1,
"limit": 20,
"stories": [
{
"id": 7,
"parent": 0,
"product": 1,
"branch": 0,
"module": 7,
"plan": "1",
"source": "po",
"sourceNote": "",
"fromBug": 0,
"title": "about our design and development",
"keywords": "",
"type": "story",
"category": "feature",
"pri": 1,
"estimate": 1,
"status": "draft",
"subStatus": "",
"color": "",
"stage": "planned",
"stagedBy": "",
"mailto": "",
"openedBy": "productManager",
"openedDate": "2012-06-05T02:24:19Z",
"assignedTo": "productManager",
"assignedDate": "2012-06-05T02:24:19Z",
"lastEditedBy": "",
"lastEditedDate": null,
"reviewedBy": "",
"reviewedDate": null,
"closedBy": "",
"closedDate": null,
"closedReason": "",
"toBug": 0,
"childStories": "",
"linkStories": "",
"duplicateStory": 0,
"version": 1,
"URChanged": "0",
"deleted": false,
"planTitle": "1.0 version "
}
]
}