Saving annotation in canvas
Developing
POST
/project/{projectId}/model/{projectModelId}/annotation/save
Request Request Example
Shell
JavaScript
Java
Swift
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."
}
}'
Response Response Example
{}
Request
Path Params
projectId
stringÂ
required
projectModelId
stringÂ
required
Body Params application/json
Responses
Modified at 2025-06-06 14:57:18