Board
A Board is a bulletin-board-type resource for posting notices and announcements in Cloudforet.
Package : spaceone.api.board.v1
Board
create
POST /board/v1/boards
Creates a new Board with SYSTEM permission. The
name
of the board is only required. You can add one or morecategories
representing the Board's attributes.
Request
Response
{
"name": "notice",
"categories": [
"admin",
"developer",
"devops"
],
"tags": {
"a": "b"
}
}
update
PUT /board/v1/board/{board_id}
Updates a specific Board with SYSTEM permission. You can make changes in Board settings, including
name
andtags
.
Request
Response
{
"board_id": "board-123456789012",
"name": "system notice",
"tags": {
"b": "c"
}
}
set_categories
PUT /board/v1/board/{board_id}/set-categories
Request
Response
delete
DELETE /board/v1/board/{board_id}
Deletes a specific Board with
SYSTEM
permission. You can delete a Board regardless of the presence of Posts created under the Board.
Request
Response
{
"board_id": "board-123456789012"
}
get
GET /board/v1/board/{board_id}
Request
Response
list
GET /board/v1/boards
POST /board/v1/boards/search
Gets a list of all Boards. You can use a query to get a filtered list of Boards.
Request
Response
>{"query": {}}
stat
POST /board/v1/boards/stat
Request
Response
Message
BoardInfo
BoardQuery
BoardRequest
board_id
string
✔
BoardStatQuery
BoardsInfo
CreateBoardRequest
GetBoardRequest
board_id
string
✔
only
list of string
✘
SetBoardCategoriesRequest
board_id
string
✔
categories
list of string
✘
UpdateBoardRequest
Last updated
Was this helpful?