PATCH /v1/dms/documents/{id}/comments/{commentId}
PATCH/v1/dms/documents/{id}/comments/{commentId}
Edit a comment on a DMS document
Request Body
| Name | Typ | Beschreibung |
|---|
body | string | |
isResolved | boolean | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
iderforderlich | string | |
commentIderforderlich | string | |
Beispiel
curl -X PATCH https://api.codemeta-os.de/v1/dms/documents/{id}/comments/{commentId} \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"body": "string",
"isResolved": false
}'
const result = await cm.dms.patch({
"body": "string",
"isResolved": false
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |