cloudforet-apis
  • README
  • content
    • en
      • Cloudforet API Documentation
      • board
        • _index
        • v1
          • Board
          • Post
          • v1
      • config
        • _index
        • v1
          • DomainConfig
          • PublicConfig
          • UserConfig
          • WorkspaceConfig
          • v1
      • core
        • _index
        • v1
          • Handler
          • Query
          • ServerInfo
          • v1
        • v2
          • Handler
          • Plugin
          • Query
          • v2
      • cost_analysis
        • _index
        • plugin
          • Cost
          • DataSource
          • Job
          • plugin
        • v1
          • Budget
          • BudgetUsage
          • Cost
          • CostQuerySet
          • CostReport
          • CostReportConfig
          • CostReportData
          • CustomWidget
          • DataSource
          • DataSourceAccount
          • DataSourceRule
          • ExchangeRate
          • Job
          • JobTask
          • PublicDashboard
          • Schedule
          • UnifiedCost
          • UserDashboard
          • v1
      • dashboard
        • _index
        • v1
          • CustomWidget
          • Dashboard
          • DomainDashboard
          • PrivateDashboard
          • PrivateDataTable
          • PrivateFolder
          • PrivateWidget
          • ProjectDashboard
          • PublicDashboard
          • PublicDataTable
          • PublicFolder
          • PublicWidget
          • v1
      • file_manager
        • _index
        • v1
          • File
          • PublicFile
          • v1
      • identity
        • _index
        • plugin
          • AccountCollector
          • Auth
          • ExternalAuth
          • plugin
        • v1
          • ApiKey
          • Authorization
          • Domain
          • DomainOwner
          • Endpoint
          • Policy
          • Project
          • ProjectGroup
          • Provider
          • Role
          • RoleBinding
          • ServiceAccount
          • Token
          • User
          • v1
        • v2
          • Agent
          • ApiKey
          • App
          • Authorization
          • Domain
          • Endpoint
          • ExternalAuth
          • Job
          • Package
          • Policy
          • Project
          • ProjectGroup
          • Provider
          • Role
          • RoleBinding
          • Schema
          • ServiceAccount
          • System
          • Token
          • TrustedAccount
          • TrustedServiceAccount
          • User
          • UserGroup
          • UserProfile
          • Workspace
          • WorkspaceGroup
          • WorkspaceGroupDetails
          • WorkspaceGroupUser
          • WorkspaceUser
          • v2
      • inventory
        • _index
        • plugin
          • Collector
          • Job
          • plugin
        • v1
          • ChangeHistory
          • CloudService
          • CloudServiceQuerySet
          • CloudServiceReport
          • CloudServiceStats
          • CloudServiceType
          • Collector
          • CollectorRule
          • Job
          • JobTask
          • Metric
          • MetricData
          • MetricExample
          • Namespace
          • Note
          • Region
          • ResourceGroup
          • v1
        • v2
          • Region
          • v2
      • monitoring
        • _index
        • plugin
          • DataSource
          • Event
          • Log
          • Metric
          • Webhook
          • plugin
        • v1
          • Alert
          • DataSource
          • EscalationPolicy
          • Event
          • EventRule
          • Log
          • MaintenanceWindow
          • Metric
          • Note
          • ProjectAlertConfig
          • Webhook
          • v1
      • mzc_service_api
        • _index
        • v1
          • Contract
          • Offering
          • Organization
          • v1
      • notification
        • _index
        • plugin
          • Notification
          • Protocol
          • plugin
        • v1
          • Notification
          • NotificationUsage
          • ProjectChannel
          • Protocol
          • Quota
          • UserChannel
          • v1
      • opsflow
        • _index
        • v1
          • Comment
          • Event
          • Task
          • TaskCategory
          • TaskType
          • v1
      • plugin
        • _index
        • v1
          • Plugin
          • Supervisor
          • v1
      • repository
        • _index
        • v1
          • DashboardTemplate
          • Plugin
          • Policy
          • Repository
          • Schema
          • v1
        • v2
          • Common
          • Provider
          • RemoteRepository
          • Schema
          • v2
      • sample
        • _index
        • v1
          • Helloworld
          • v1
      • search
        • _index
        • v1
          • Resource
          • v1
      • secret
        • _index
        • v1
          • Secret
          • SecretGroup
          • TrustedSecret
          • UserSecret
          • v1
      • statistics
        • _index
        • plugin
          • Storage
          • plugin
        • v1
          • History
          • Resource
          • Schedule
          • Storage
          • v1
Powered by GitBook
On this page
  • Board
  • create
  • update
  • set_categories
  • delete
  • get
  • list
  • stat
  • Message
  • BoardInfo
  • BoardQuery
  • BoardRequest
  • BoardStatQuery
  • BoardsInfo
  • CreateBoardRequest
  • SetBoardCategoriesRequest
  • UpdateBoardRequest
  1. content
  2. en
  3. board
  4. v1

Board

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

Package : spaceone.api.board.v1

Board

Board Methods:

Method
Request
Response

create

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.

POST /board/v1/board/create

{{< tabs " create " >}}

{{< tab "Request Example" >}}

  • name (string) Required

  • categories (string) Repeated

  • tags (Struct)

{{< highlight json >}} { "name": "notice", "categories": ["admin", "developer", "devops"], "tags": {"a": "b"} } {{< /highlight >}} {{< /tab >}}

{{< tab "Response Example" >}}

  • board_id (string) Required

  • name (string) Required

  • categories (string) Repeated Required

  • tags (Struct) Required

  • created_at (string) Required

{{< highlight json >}} { "board_id": "board-123456789012", "name": "notice", "categories": [ "admin", "developer", "devops" ], "tags": { "a": "b" }, "created_at": "2022-01-01T06:47:27.759Z" } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

update

Updates a specific Board with SYSTEM permission. You can make changes in Board settings, including name and tags.

POST /board/v1/board/update

{{< tabs " update " >}}

{{< tab "Request Example" >}}

  • board_id (string) Required

  • name (string)

  • tags (Struct)

{{< highlight json >}} { "board_id": "board-123456789012", "name": "system notice", "tags": {"b": "c"} } {{< /highlight >}} {{< /tab >}}

{{< tab "Response Example" >}}

  • board_id (string) Required

  • name (string) Required

  • categories (string) Repeated Required

  • tags (Struct) Required

  • created_at (string) Required

{{< highlight json >}} { "board_id": "board-123456789012", "name": "notice", "categories": [ "admin", "developer", "devops" ], "tags": { "a": "b" }, "created_at": "2022-01-01T06:47:27.759Z" } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

set_categories

Adds or changes categories of a specific Board with SYSTEM permission. A change in categories of a Board does not affect the category of the child Posts.

POST /board/v1/board/set-categories

{{< tabs " set_categories " >}}

{{< tab "Request Example" >}}

  • board_id (string) Required

  • categories (string) Repeated

{{< highlight json >}} { "board_id": "board-123456789012", "categories": ["Developer", "SRE", "Devops"] } {{< /highlight >}} {{< /tab >}}

{{< tab "Response Example" >}}

  • board_id (string) Required

  • name (string) Required

  • categories (string) Repeated Required

  • tags (Struct) Required

  • created_at (string) Required

{{< highlight json >}} { "board_id": "board-123456789012", "name": "notice", "categories": [ "admin", "developer", "devops" ], "tags": { "a": "b" }, "created_at": "2022-01-01T06:47:27.759Z" } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

delete

Deletes a specific Board with SYSTEM permission. You can delete a Board regardless of the presence of Posts created under the Board.

POST /board/v1/board/delete

{{< tabs " delete " >}}

{{< tab "Request Example" >}}

  • board_id (string) Required

{{< highlight json >}} { "board_id": "board-123456789012" } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

get

Gets a specific Board. You must specify the board_id of the Board to get. Prints detailed information about the Board, including name, categories.

POST /board/v1/board/get

{{< tabs " get " >}}

{{< tab "Request Example" >}}

  • board_id (string) Required

{{< highlight json >}} { "board_id": "board-123456789012" } {{< /highlight >}} {{< /tab >}}

{{< tab "Response Example" >}}

  • board_id (string) Required

  • name (string) Required

  • categories (string) Repeated Required

  • tags (Struct) Required

  • created_at (string) Required

{{< highlight json >}} { "board_id": "board-123456789012", "name": "notice", "categories": [ "admin", "developer", "devops" ], "tags": { "a": "b" }, "created_at": "2022-01-01T06:47:27.759Z" } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

list

Gets a list of all Boards. You can use a query to get a filtered list of Boards.

POST /board/v1/board/list

{{< tabs " list " >}}

{{< tab "Request Example" >}}

  • query (Query)

  • board_id (string)

  • name (string)

{{< highlight json >}} { "query": {} } {{< /highlight >}} {{< /tab >}}

{{< tab "Response Example" >}}

  • results (BoardInfo) Repeated Required

  • total_count (int32) Required

{{< highlight json >}} { "results": [ { "board_id": "board-123456789012", "name": "dev-notice", "categories": [ "flower", "school", "spaceone" ], "tags": { "b": "c" }, "created_at": "2022-01-01T05:16:08.549Z" }, { "board_id": "board-987654321098", "name": "notice", "tags": { "a": "b" }, "created_at": "2022-01-01T05:24:19.758Z" } ], "total_count": 2 } {{< /highlight >}} {{< /tab >}}

{{< /tabs >}}

stat

POST /board/v1/board/stat

Message

BoardInfo

  • board_id (string) Required

  • name (string) Required

  • categories (string) Repeated Required

  • tags (Struct) Required

  • created_at (string) Required

BoardQuery

  • query (Query)

  • board_id (string)

  • name (string)

BoardRequest

  • board_id (string) Required

BoardStatQuery

  • query (StatisticsQuery) Required

BoardsInfo

  • results (BoardInfo) Repeated Required

  • total_count (int32) Required

CreateBoardRequest

  • name (string) Required

  • categories (string) Repeated

  • tags (Struct)

SetBoardCategoriesRequest

  • board_id (string) Required

  • categories (string) Repeated

UpdateBoardRequest

  • board_id (string) Required

  • name (string)

  • tags (Struct)

Previousv1NextPost

Last updated 1 year ago

CreateBoardRequest
UpdateBoardRequest
SetBoardCategoriesRequest
BoardRequest
BoardRequest
BoardQuery
BoardInfo
BoardInfo
BoardInfo
BoardInfo
BoardsInfo
create
CreateBoardRequest
BoardInfo
update
UpdateBoardRequest
BoardInfo
set_categories
SetBoardCategoriesRequest
BoardInfo
delete
BoardRequest
Empty
get
BoardRequest
BoardInfo
list
BoardQuery
BoardsInfo
stat
BoardStatQuery
Struct