Authorization: Bearer ********************{
"template_id": "c6d67e98-83ea-49f0-8812-e4abae2b68bc",
"user_inputs": {
"property1": "string",
"property2": "string"
},
"auto_fill": true,
"fill_suggestions": true
}curl --location '/api/v1/notes/templates//fill' \
--header 'Content-Type: application/json' \
--data '{
"template_id": "c6d67e98-83ea-49f0-8812-e4abae2b68bc",
"user_inputs": {
"property1": "string",
"property2": "string"
},
"auto_fill": true,
"fill_suggestions": true
}'{
"code": 0,
"message": "success",
"data": {
"filled_content": "string",
"suggestions": [
"string"
],
"completion_rate": 0,
"missing_fields": [
"string"
]
}
}