コメントを作成
POST
/v1/commentsページまたは既存のディスカッションスレッドにコメントを作成します。
Request
Headerパラメータ
Notion-Version
string
必須
Request Bodyパラメータapplication/json
parent
object
可選
ページの親。これまたは discussion_id のいずれかが必要です(両方ではありません)
page_id
string
必須
rich_text
array [object {1}]
必須
text
object
可選
例
{
"parent": {
"page_id": "string"
},
"rich_text": [
{
"text": {
"content": "string"
}
}
]
}
Request samples
Response
OK(200)
アクセス禁止(403)
HTTP Code: 200
Content Type : JSONapplication/json
データ構造
object
string
必須
id
string
必須
parent
object
必須
type
string
必須
page_id
string
必須
discussion_id
string
必須
created_time
string
必須
last_edited_time
string
必須
created_by
object
必須
object
string
必須
id
string
必須
rich_text
array [object {5}]
必須
type
string
可選
text
object
可選
annotations
object
可選
plain_text
string
可選
href
null
可選
例
成功例
{
"object": "comment",
"id": "b52b8ed6-e029-4707-a671-832549c09de3",
"parent": {
"type": "page_id",
"page_id": "5c6a2821-6bb1-4a7e-b6e1-c50111515c3d"
},
"discussion_id": "f1407351-36f5-4c49-a13c-49f8ba11776d",
"created_time": "2022-07-15T20:53:00.000Z",
"last_edited_time": "2022-07-15T20:53:00.000Z",
"created_by": {
"object": "user",
"id": "067dee40-6ebd-496f-b446-093c715fb5ec"
},
"rich_text": [
{
"type": "text",
"text": {
"content": "Hello world",
"link": null
},
"annotations": {
"bold": false,
"italic": false,
"strikethrough": false,
"underline": false,
"code": false,
"color": "default"
},
"plain_text": "Hello world",
"href": null
}
]
}
最終更新: 2 years ago