GET/boards
Gets a list of boards based on the specified role.
This API operation does not get categories.
If the role parameter is set to WRITER, the operation requires read permission to get boards.
OAuth 2.0 authentication.
For more information, see Authentication and Authorization.
board
board.read
| Parameter | Type | Description |
|---|---|---|
| role | string | Board permissions default : READER Allowed values : READER, WRITER example : WRITER |
| count | integer | Number of items in a list default : 100 minimum : 1 maximum : 200 example : 200 format : int32 |
| cursor | string | Cursor value for pagination example : JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA== |
| Header | type | Description |
|---|---|---|
| Authorization | string | Bearer {token} required |
OK
| Property | Type | Description |
|---|---|---|
| boards | array (object) | |
| responseMetaData | object (responseMetaData) | Metadata for pagination |
| Property | Type | Description |
|---|---|---|
| boardId | integer | Board no. required format : int64 |
| boardName | string | Subject required |
| description | string | Description |
| createdTime | string | Creation time
required format : date-time readOnly : true |
| modifiedTime | string | Update time
format : date-time readOnly : true |
| displayOrder | integer | Display order required format : int32 readOnly : true |
| resourceLocation | integer | Resource location (location code) format : int32 |
| Property | Type | Description |
|---|---|---|
| nextCursor | string | Cursor value for pagination |
example
1{2 "boards": [3 {4 "boardId": 100,5 "boardName": "Notice",6 "description": "Notice Description",7 "createdTime": "2019-08-24T14:15:22+09:00",8 "modifiedTime": "2022-10-28T17:26:35+09:00",9 "displayOrder": 1,10 "resourceLocation": 2410111 }12 ],13 "responseMetaData": {14 "nextCursor": "JlIBsfJogXpzDGY8OscZziqZpYqCAu3RbZbaFzBb1od6lWQtSdPUd2FIdCuaGgu8DA=="15 }16}