GET/groups/{groupId}/note/posts
조직/그룹 노트의 게시글 목록을 조회한다.
권한이 있는 조직/그룹 노트의 게시글만 조회할 수 있다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증를 참고한다.
group.note
group.note.read
| Parameter | Type | Description |
|---|---|---|
| groupId | string | 조직/그룹 ID required example : group127-8545-4463-603b-04d550d23bf |
| Parameter | Type | Description |
|---|---|---|
| count | integer | 목록 조회 개수 default : 20 minimum : 1 maximum : 40 |
| cursor | string | 다음 목록 조회 시 사용하는 값 example : sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| posts | array (object) | 게시글 목록 |
| responseMetaData | object (responseMetaData) | 페이징 처리를 위한 메타데이터 |
| Property | Type | Description |
|---|---|---|
| postId | integer | 게시글 번호 format : int64 |
| title | string | 제목 required minLength : 1 maxLength : 200 |
| enableCollaboration | boolean | 타인 편집 허용 여부 |
| readCount | integer | 읽은 횟수 format : int64 |
| commentCount | integer | 댓글 수 format : int64 |
| fileCount | integer | 파일 수 format : int64 |
| likeCount | integer | 좋아요 수 format : int64 |
| createdTime | string | 생성 시간 required format : date-time readOnly : true |
| modifiedTime | string | 수정 시간 format : date-time readOnly : true |
| userId | string | 작성자 ID readOnly : true nullable : true |
| userName | string | 작성자 이름 required readOnly : true |
| isNotice | boolean | 공지 사항 등록 여부 |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 페이지 조회를 위한 커서 |
example
1{2 "posts": [3 {4 "postId": 1,5 "title": "Works 사용 안내",6 "enableCollaboration": true,7 "readCount": 14,8 "commentCount": 2,9 "fileCount": 0,10 "likeCount": 1,11 "createdTime": "2019-08-24T14:15:22+09:00",12 "modifiedTime": "2019-08-24T14:15:22+09:00",13 "userId": "1bbe7149-0ccd-433d-1eba-04f6901660dc",14 "userName": "Susan Nielsen",15 "isNotice": false16 }17 ],18 "responseMetaData": {19 "nextCursor": "sfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="20 }21}