Update sequence configuration
PATCH/v1/settings/sequences/{sequenceKey}
CodeMeta OS API endpoint.
Request Body
| Name | Typ | Beschreibung |
|---|
prefix | string | |
suffix | string | |
pattern | string | |
step | integer | |
currentValue | integer | |
customerCodeFallback | string | |
typeOverrides | object | |
Pfad-Parameter
| Name | Typ | Beschreibung |
|---|
sequenceKeyerforderlich | string | |
Beispiel
curl -X PATCH https://api.codemeta-os.de/v1/settings/sequences/{sequenceKey} \
-H "X-Tenant-Id: $TENANT" \
-H "Content-Type: application/json" \
-b cookies.txt \
-d '{
"prefix": "string",
"suffix": "string",
"pattern": "string",
"step": 0,
"currentValue": 0,
"customerCodeFallback": "string",
"typeOverrides": null
}'
const result = await cm.settings.patch({
"prefix": "string",
"suffix": "string",
"pattern": "string",
"step": 0,
"currentValue": 0,
"customerCodeFallback": "string",
"typeOverrides": null
});
Antwortcodes
| HTTP |
Bedeutung |
200 |
Default Response |