Epic Related Issue List
POST
https://app.leiga.com/openapi/api/epic/page-issue
Epic Module(epic)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/epic/page-issue' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNumber": 1,
"pageSize": 10,
"id": 1,
"projectId": 1
}'
Response Response Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"summary": "xxx",
"issueType": {
"name": "xxx",
"id": 1
},
"owner": {
"name": "xxx",
"id": 1
},
"estimatePoint": 1,
"issueNumber": 1,
"dueDate": 1646301600000,
"sprint": {
"name": "xxx",
"id": 1
},
"follows": [
{
"name": "xxx",
"id": 1
}
],
"id": 1,
"state": {
"name": "xxx",
"id": 1
},
"priority": {
"name": "xxx",
"id": 1
},
"startDate": 1646301600000
}
]
}
}
Request
Header Params
Content-Type
stringÂ
required
Example:
application/json
accessToken
stringÂ
required
Example:
{{accessToken}}
Body Params application/json
Responses
Modified at 2024-06-12 06:46:49