Create an Annotation layer
Request
Provide your bearer token in the Authorization
header when making requests to protected resources. Example:Authorization: Bearer ********************
Body Params application/json
{
"descr": "string",
"name": "string"
}
Request Code Samples
curl --location --request POST '/annotation_layer/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
"descr": "string",
"name": "string"
}'
Responses
{
"id": 0,
"result": {
"descr": "string",
"name": "string"
}
}
Modified at 2025-06-04 22:27:17