Post
A Post is a message published on a Board. It also provides notifications to Projects affected by the Post.
Package : spaceone.api.board.v1
Post
Post Methods:
create
POST /board/v1/board/{board_id}/posts
Creates a new Post under a specific Board. You must specify the
board_id
,title
, andcontents
. The parametercategory
is not required but can be set in the scope ofcategories
specified in the parent Board. You can make the new Post pinned or pop up by adjusting the parameters.
Request
Response
update
PUT /board/v1/board/{board_id}/post/{post_id}
Updates a specific Post. You can make changes in Post settings, except
board_id
,post_id
, anddomain_id
.
Request
Response
send_notification
POST /board/v1/board/{board_id}/post/{post_id}/send-notification
Not Implemented
Request
Response
delete
DELETE /board/v1/board/{board_id}/post/{post_id}
Deletes a specific Post. You must specify the
post_id
of the Post to delete, and theboard_id
of the Board where the child Post to delete belongs.
Request
Response
get
GET /board/v1/board/{board_id}/post/{post_id}
Gets a specific Post. You must specify the
post_id
of the Post to get, and theboard_id
of the Board where the child Post to get belongs. Prints detailed information about the Post.
Request
Response
list
GET /board/v1/board/{board_id}/posts
POST /board/v1/board/{board_id}/posts/search
Gets a list of all Posts. You can use a query to get a filtered list of Posts.
stat
POST /board/v1/board/{board_id}/posts/stat
Request
Response
Message
CreatePostRequest
board_id
string
✔
category
string
✘
title
string
✔
contents
string
✔
writer
string
✘
domain_id
string
✘
GetPostRequest
board_id
string
✔
post_id
string
✔
only
list of string
✘
domain_id
string
✘
PostInfo
board_id
string
post_id
string
category
string
title
string
contents
string
writer
string
scope
SYSTEM
DOMAIN
domain_id
string
user_id
string
user_domain_id
string
created_at
string
updated_at
string
PostQuery
board_id
string
✔
post_id
string
✘
category
string
✘
writer
string
✘
user_id
string
✘
user_domain_id
string
✘
domain_id
string
✘
PostRequest
board_id
string
✔
post_id
string
✔
domain_id
string
✘
PostStatQuery
domain_id
string
✔
PostsInfo
SendNotificationRequest
board_id
string
✔
post_id
string
✔
domain_id
string
✘
UpdatePostRequest
board_id
string
✔
post_id
string
✔
category
string
✘
title
string
✘
contents
string
✘
writer
string
✘
domain_id
string
✘
Last updated