Models
Get Started
Integrations
Pages
Create Page
POST
/
v1
/
documentation
/
pages
curl --request POST \
--url http://localhost:8000/api/v1/documentation/pages \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"block_type": "bookmark",
"content": [
{
"annotations": {
"bold": "<string>",
"italic": "<string>",
"strikethrough": "<string>",
"underline": "<string>",
"code": "<string>",
"color": "<string>"
},
"plain_text": "<string>",
"href": "<string>"
}
]
}
]
}'
{
"data": {
"id": "<string>",
"parent_id": "<string>",
"title": "<string>",
"created_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"updated_by": "<string>"
}
}
Query Parameters
Include raw response. When you want more data from the source
Body
application/json
Response
201
application/json
The response is of type object
.
curl --request POST \
--url http://localhost:8000/api/v1/documentation/pages \
--header 'Content-Type: application/json' \
--data '{
"data": [
{
"block_type": "bookmark",
"content": [
{
"annotations": {
"bold": "<string>",
"italic": "<string>",
"strikethrough": "<string>",
"underline": "<string>",
"code": "<string>",
"color": "<string>"
},
"plain_text": "<string>",
"href": "<string>"
}
]
}
]
}'
{
"data": {
"id": "<string>",
"parent_id": "<string>",
"title": "<string>",
"created_by": "<string>",
"created_at": "<string>",
"updated_at": "<string>",
"updated_by": "<string>"
}
}