items_upsertItemCustomerPart

WRITE

Upsert item customer part.

Parameters

itemIdstringrequired
customerIdstringrequired
customerPartIdstringrequired
idstringoptional
customerPartRevisionstringoptional

Call it

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

call_tool
call_tool({
  "name": "items_upsertItemCustomerPart",
  "arguments": {
    "itemId": "string",
    "customerId": "string",
    "customerPartId": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "customerId": {
      "type": "string"
    },
    "customerPartId": {
      "type": "string"
    },
    "customerPartRevision": {
      "type": "string"
    }
  },
  "required": [
    "itemId",
    "customerId",
    "customerPartId"
  ]
}