Create the annotation
Developing
POST
/project/{projectId}/model/{projectModelId}/annotation/new
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST '/project//model//annotation/new' \
--header 'Content-Type: application/json' \
--data-raw '{
"pickModelComponentId": "pickComp123",
"pageNumber": 1,
"annotationData": {
"id": "annotation-uuid-optional",
"notes": "This is a test annotation",
"boundingBox": {
"x": 100,
"y": 200,
"width": 150,
"height": 120
},
"tags": [
"important",
"issue"
]
}
}'
Response Response Example
{}
Request
Path Params
projectId
string
required
projectModelId
string
required
Body Params application/json
Responses
Modified at 2025-06-06 14:57:08