GET/boards/{boardId}/posts/{postId}/readers
Gets the members who have read a post.
This API operation cannot get a post from Trash.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
board
board.read
| Parameter | Type | Description |
|---|---|---|
| boardId | integer | Board ID required example : 100 format : int64 |
| postId | integer | Post 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) | Metadata for pagination |
| Property | Type | Description |
|---|---|---|
| userId | string | Author ID. example : user7149-0ccd-433d-1eba-04f6901660dc readOnly : true nullable : true |
| userName | string | Author name required example : Susan Nielsen readOnly : true |
| isRead | boolean | Indicates whether the post is read. required example : false readOnly : true |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | Cursor value for pagination |
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}