PATCH /v1/signatures/{id}
PATCH/v1/signatures/{id}
CodeMeta OS API endpoint.
Request Body
| Name | Typ | Beschreibung |
|---|
name | string | |
htmlContent | string | |
jsonContent | object | |
isDefault | boolean | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
iderforderlich | string | |
Beispiel
curl -X PATCH https://api.codemeta-os.de/v1/signatures/{id} \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"name": "string",
"htmlContent": "string",
"jsonContent": null,
"isDefault": false
}'
const result = await cm.signatures.patch({
"name": "string",
"htmlContent": "string",
"jsonContent": null,
"isDefault": false
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |