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:
Method | Request | Response |
---|---|---|
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.
Type | Message |
---|---|
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
.
Type | Message |
---|---|
Request | |
Response |
send_notification
POST /board/v1/board/{board_id}/post/{post_id}/send-notification
Not Implemented
Type | Message |
---|---|
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.
Type | Message |
---|---|
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.
Type | Message |
---|---|
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
Type | Message |
---|---|
Request | |
Response |
Message
CreatePostRequest
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
category | string | ✘ | |
title | string | ✔ | |
contents | string | ✔ | |
options | ✘ | ||
writer | string | ✘ | |
domain_id | string | ✘ |
GetPostRequest
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
post_id | string | ✔ | |
only | list of string | ✘ | |
domain_id | string | ✘ |
PostInfo
Field | Type | Description |
---|---|---|
board_id | string | |
post_id | string | |
category | string | |
title | string | |
contents | string | |
options | ||
view_count | ||
writer | string | |
scope |
| |
domain_id | string | |
user_id | string | |
user_domain_id | string | |
created_at | string | |
updated_at | string |
PostQuery
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
post_id | string | ✘ | |
category | string | ✘ | |
writer | string | ✘ | |
user_id | string | ✘ | |
user_domain_id | string | ✘ | |
domain_id | string | ✘ | |
query | ✘ |
PostRequest
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
post_id | string | ✔ | |
domain_id | string | ✘ |
PostStatQuery
Field | Type | Required | Description |
---|---|---|---|
query | ✔ | ||
domain_id | string | ✔ |
PostsInfo
Field | Type | Description |
---|---|---|
results | ||
total_count |
SendNotificationRequest
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
post_id | string | ✔ | |
domain_id | string | ✘ |
UpdatePostRequest
Field | Type | Required | Description |
---|---|---|---|
board_id | string | ✔ | |
post_id | string | ✔ | |
category | string | ✘ | |
title | string | ✘ | |
contents | string | ✘ | |
options | ✘ | ||
writer | string | ✘ | |
domain_id | string | ✘ |
Last updated