POST /v1/dms/documents/{id}/legal-hold
POST/v1/dms/documents/{id}/legal-hold
Set legal hold on a DMS document (blocks deletion until released)
Request Body
| Name | Typ | Beschreibung |
|---|
reason | string | |
caseRef | string | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
iderforderlich | string | |
Beispiel
curl -X POST https://api.codemeta-os.de/v1/dms/documents/{id}/legal-hold \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"reason": "string",
"caseRef": "string"
}'
const result = await cm.dms.post({
"reason": "string",
"caseRef": "string"
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |