catalog.category.create

Create a category (flat compliance taxonomy; taksitCap = BDDK installment cap).

Payload

fieldtyperequirednotes
namestring (≤80 chars)yes
taksitCapinteger (0..12)no
positioninteger (0..9007199254740991)no

JSON Schema

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 80
    },
    "taksitCap": {
      "type": "integer",
      "minimum": 0,
      "maximum": 12
    },
    "position": {
      "type": "integer",
      "minimum": 0,
      "maximum": 9007199254740991
    }
  },
  "required": [
    "name"
  ],
  "additionalProperties": false
}
Generated from the live platform registries at build time — reference pages cannot go stale. Markdown variant: /reference/commands/catalog.category.create.md