POST /v1/dms/documents/{id}/comments
POST/v1/dms/documents/{id}/comments
Create a comment on a DMS document
Request Body
| Name | Typ | Beschreibung |
|---|
bodyerforderlich | string | |
parentCommentId | string | |
annotationId | string | |
mentions | string[] | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
iderforderlich | string | |
Beispiel
curl -X POST https://api.codemeta-os.de/v1/dms/documents/{id}/comments \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"body": "string",
"parentCommentId": "string",
"annotationId": "string",
"mentions": []
}'
const result = await cm.dms.post({
"body": "string",
"parentCommentId": "string",
"annotationId": "string",
"mentions": []
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |