settings_upsertItemSerialSequence

WRITE

Upsert item serial sequence.

Parameters

itemIdstringrequired
idstringoptional
prefixstringoptional
suffixstringoptional
nextnumberoptional
stepnumberoptional
sizenumberoptional

Call it

Invoke it through the call_tool meta-tool with its arguments:

call_tool
call_tool({
  "name": "settings_upsertItemSerialSequence",
  "arguments": {
    "itemId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "prefix": {
      "type": "string"
    },
    "suffix": {
      "type": "string"
    },
    "next": {
      "type": "number"
    },
    "step": {
      "type": "number"
    },
    "size": {
      "type": "number"
    }
  },
  "required": [
    "itemId"
  ]
}