curl --request POST \
--url https://ai.wisepilot.app/api/v1/content/assets/{id}/sections/manage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"operations": [
{
"action": "add",
"section_id": "<string>",
"title": "<string>",
"content": "<string>",
"sort_order": 123
}
]
}
'{
"success": true,
"data": {
"sections": [
{
"id": "<string>",
"sectionType": "<string>",
"title": "<string>",
"content": "<string>",
"sortOrder": 123
}
]
}
}Bulk section management — add, update, reorder, or delete sections. minRole: editor
curl --request POST \
--url https://ai.wisepilot.app/api/v1/content/assets/{id}/sections/manage \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"operations": [
{
"action": "add",
"section_id": "<string>",
"title": "<string>",
"content": "<string>",
"sort_order": 123
}
]
}
'{
"success": true,
"data": {
"sections": [
{
"id": "<string>",
"sectionType": "<string>",
"title": "<string>",
"content": "<string>",
"sortOrder": 123
}
]
}
}