GET/boards/{boardId}/posts/{postId}/readers
게시글의 읽은 멤버 목록을 조회한다.
휴지통의 게시글은 조회할 수 없다.
OAuth 2.0 인증.
자세한 인증 방식은 인가·인증를 참고한다.
board
board.read
| Parameter | Type | Description |
|---|---|---|
| boardId | integer | 게시판 ID required example : 100 format : int64 |
| postId | integer | 게시글 ID required example : 1 format : int64 |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| readers | array (object) | maxItems : 5000 |
| responseMetaData | object (responseMetaData) | 페이징 처리를 위한 메타데이터 |
| Property | Type | Description |
|---|---|---|
| userId | string | 작성자 ID example : user7149-0ccd-433d-1eba-04f6901660dc readOnly : true nullable : true |
| userName | string | 작성자 이름 required example : Susan Nielsen readOnly : true |
| isRead | boolean | 읽음 여부 required example : false readOnly : true |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | 다음 페이지 조회를 위한 커서 |
example
1{2 "readers": [3 {4 "userId": "user7149-0ccd-433d-1eba-04f6901660dc",5 "userName": "Susan Nielsen",6 "isRead": true7 }8 ],9 "responseMetaData": {10 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="11 }12}