curl --location --request POST '/project//model//annotation/save' \
--header 'Content-Type: application/json' \
--data-raw '{
"pageNumber": 3,
"canvasData": {
"shapes": [
{
"type": "rectangle",
"x": 50,
"y": 100,
"width": 120,
"height": 80,
"color": "blue"
},
{
"type": "circle",
"x": 200,
"y": 150,
"radius": 40,
"color": "red"
}
],
"comments": "Initial markup complete for review."
}
}'
{}