POST/boards
掲示板を登録する。
Authorization URL - https://auth.worksmobile.com/oauth2/v2.0/authorize
Token URL - https://auth.worksmobile.com/oauth2/v2.0/token
Refresh URL - https://auth.worksmobile.com/oauth2/v2.0/token
board
Header | type | Description |
---|---|---|
Authorization | string | Bearer {token} required |
Content-Type | string | application/json required example : application/json |
Property | Type | Description |
---|---|---|
boardName | string | 掲示板名 required minLength : 1 maxLength : 60 |
description | string | 掲示板の説明 maxLength : 300 |
example
1{
2 "boardName": "Notice",
3 "description": "Notice Description"
4}
OK
Property | Type | Description |
---|---|---|
boardId | integer | 掲示板ID required format : int64 |
boardName | string | 掲示板名 required |
description | string | 掲示板の説明 |
createdTime | string | 登録日時 required format : date-time readOnly : true |
modifiedTime | string | 更新日時 format : date-time readOnly : true |
displayOrder | integer | 表示順位 required format : int32 readOnly : true |
example
1{
2 "boardId": 100,
3 "boardName": "Notice",
4 "description": "Notice Description",
5 "createdTime": "2019-08-24T14:15:22+09:00",
6 "modifiedTime": "2019-08-24T14:15:22+09:00",
7 "displayOrder": 1
8}
Forbidden