Board

A Board is a bulletin-board-type resource for posting notices and announcements in Cloudforet.

Package : spaceone.api.board.v1

Board

Board Methods:

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 more categories representing the Board's attributes.

Type
Message
{
    "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 and tags.

Type
Message
{
    "board_id": "board-123456789012",
    "name": "system notice",
    "tags": {
        "b": "c"
    }
}

set_categories

PUT /board/v1/board/{board_id}/set-categories

Type
Message

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.

Type
Message
{
    "board_id": "board-123456789012"
}

get

GET /board/v1/board/{board_id}

Type
Message

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.

Type
Message

Request

Response

>{"query": {}}

stat

POST /board/v1/boards/stat

Type
Message

Message

BoardInfo

Field
Type
Description

board_id

string

name

string

categories

list of string

created_at

string

BoardQuery

Field
Type
Required
Description

board_id

string

name

string

BoardRequest

Field
Type
Required
Description

board_id

string

BoardStatQuery

Field
Type
Required
Description

BoardsInfo

Field
Type
Description

total_count

CreateBoardRequest

Field
Type
Required
Description

name

string

categories

list of string

GetBoardRequest

Field
Type
Required
Description

board_id

string

only

list of string

SetBoardCategoriesRequest

Field
Type
Required
Description

board_id

string

categories

list of string

UpdateBoardRequest

Field
Type
Required
Description

board_id

string

name

string

Last updated

Was this helpful?