curl --request POST \
--url https://api.n-3.co.uk/projects/{projectId}/document-studio/reports \
--header 'Content-Type: application/json' \
--data '
{
"reportName": "<string>",
"content": {
"blocks": [
{
"type": "<string>",
"content": "<string>",
"properties": {
"sectionId": "<string>",
"title": "<string>",
"required": true,
"fontSize": "<string>",
"textAlign": "<string>",
"color": "<string>"
},
"children": [
{}
]
}
],
"metadata": {
"templateId": "<string>",
"reportType": "<string>",
"author": "<string>",
"lastModified": "<string>"
}
}
}
'