- Authorize Module(authorize)
- User Module(user)
- Organization Module(org)
- Project Module(project)
- Issue Module(issue)
- Get Issue Type List
- Get Issue Scheme
- Get Issue Fields
- Get Issue Field Detail
- Batch Add Issue
- New Issue
- Batch Update Issue
- Update Issue
- Get Issue Detail V2
- Get Issue Detail
- Get Issue Detail By Issue Number
- Remove Issue
- Batch Remove Issue
- Query Issue List
- Query Issue List V2
- Get Project Issue Filter Fields
- Get Issue Select Options
- Get Issue Relations
- Add Issue Relation
- Remove Issue Relation
- Batch Add Subtasks
- Remove Subtask
- Update Subtask
- Get Subtask List
- Update Subtask Status
- Get Subtask Field List
- Add Labour Record
- Update Labour Record
- Remove Labour Record
- Labour Record List
- Get Trash Select Option List(The free version does not support)
- Get Trash List(The free version does not support)
- Restore Issue(The free version does not support)
- Get Finished Issue List
- Sprint Module(sprint)
- Workflow Module(workflow)
- Tag Module(tag)
- Epic Module(epic)
- Version Module(version)
- Webhook Module(webhook)
- Comment Module(comment)
- File Module(file)
- Personal Message Module(msg)
Get Epic List
POST
https://app.leiga.com/openapi/api/epic/page
Epic Module(epic)
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
owner
integer <int64>
optional
pageNumber
integer <int32>
optional
pageSize
integer <int32>
optional
keyword
string
optional
projectId
integer <int64>
required
status
integer <int64>
optional
Example
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
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 ''
Responses
🟢200OK
application/json
Body
summary
string
optional
owner
object
optional
name
string
optional
id
integer <int64>
optional
dueDate
string <date>
optional
follows
array [object {2}]
optional
name
string
optional
id
integer <int64>
optional
id
integer <int64>
optional
priority
object
optional
name
string
optional
id
integer <int64>
optional
startDate
string <date>
optional
status
object
optional
name
string
optional
id
integer <int64>
optional
labels
array [object {2}]
optional
name
string
optional
id
integer <int64>
optional
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
}
]
}
]
}
}
Modified at 2024-06-12 06:46:49