Get Epic List
POST
https://app.leiga.com/openapi/api/epic/page
Epic Module(epic)
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://app.leiga.com/openapi/api/epic/page' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw '{
"owner": 1,
"pageNumber": 1,
"pageSize": 10,
"keyword": "a",
"projectId": 1,
"status": 5245293
}'
Response Response Example
{
"code": "0",
"data": {
"total": 1,
"list": [
{
"summary": "xxx",
"owner": {
"name": "xxx",
"id": 1
},
"dueDate": 1646301600000,
"follows": [
{
"name": "xxx",
"id": 1
}
],
"id": 1,
"priority": {
"name": "xxx",
"id": 1
},
"startDate": 1646301600000,
"status": {
"name": "xxx",
"id": 1
},
"labels": [
{
"name": "xxx",
"id": 1
}
]
}
]
}
}
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