- 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 Comment List
POST
https://app.leiga.com/openapi/api/comment/page
Comment Module(comment)
Request
Header Params
Content-Type
string
required
Example:
application/json
accessToken
string
required
Example:
{{accessToken}}
Body Params application/json
commentModule
string
required
linkId
integer <int64>
required
pageNumber
integer <int32>
optional
pageSize
integer <int32>
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/comment/page' \
--header 'accessToken: ' \
--header 'Content-Type: application/json' \
--data-raw ''
Responses
🟢200OK
application/json
Body
commentNo
integer <int32>
optional
commentAttributes
object
optional
commentAtInfos
array [object]
optional
plainContent
string
optional
subReplies
array [object]
optional
commentUser
object
optional
userName
string
optional
userId
integer <int64>
optional
accountEnabled
string <byte>
optional
<= 4 characters
updateTime
string <date>
optional
content
string
optional
deleteFlag
string <byte>
optional
<= 4 characters
stickerVOList
array [object]
optional
createBy
integer <int64>
optional
createTime
string <date>
optional
commentId
integer <int64>
optional
files
array [object]
optional
Example
{
"code": "0",
"data": {
"extend": {
"totalCommentNo": 2
},
"total": 2,
"list": [
{
"deleteFlag": 0,
"stickerVOList": [
{
"containsSelf": true,
"replyUserList": [
{
"name": "eee",
"avatar": "ddd",
"id": 3,
"orgUserId": 4
}
],
"stickerCode": "fff"
}
],
"commentAttributes": {
"commentAtInfos": []
},
"createTime": 1660724394130,
"subReplies": [],
"commentUser": {
"headPortrait": "aaa",
"userName": "bbb",
"userId": 2
},
"commentId": 1,
"files": [],
"updateTime": 1660724394130,
"content": "ccc"
},
{
"deleteFlag": 0,
"stickerVOList": [],
"createTime": 1660724446300,
"subReplies": [
{
"deleteFlag": 0,
"stickerVOList": [],
"createTime": 1661213779644,
"groupId": 5,
"commentUser": {
"headPortrait": "jjj",
"userName": "kkk",
"userId": 8
},
"replyId": 5,
"commentId": 7,
"files": [],
"updateTime": 1661213779644,
"linkedIssueDeleteFlag": 0,
"content": "lll"
}
],
"commentUser": {
"headPortrait": "ggg",
"userName": "hhh",
"userId": 6
},
"commentId": 5,
"files": [],
"updateTime": 1660724446300,
"content": "iii"
}
]
}
}
Modified at 2024-06-12 06:46:49