curl --location --request POST 'https://openapi.wolai.com/v1/blocks' \
--header 'Authorization;' \
--header 'Content-Type: application/json' \
--data-raw '{
"parent_id": "父块ID",
"blocks": [
{
"type": "text",
"content": "Hello ",
"text_alignment": "center"
},
{
"type": "heading",
"level": 1,
"content": {
"title": "World!",
"front_color": "red"
},
"text_alignment": "center"
}
]
}'
{
"userId": "string",
"spaceId": "string",
"block": {
"parent_id": "string",
"type": "string"
}
}