sales_upsertSalesRFQLine

WRITE

Upsert sales r f q line.

Parameters

salesRfqIdstringrequired
customerPartIdstringrequired
quantityany[]required
unitOfMeasureCodestringrequired
idstringoptional
customerPartRevisionstringoptional
itemIdstringoptional
descriptionstringoptional
ordernumberoptional
modelUploadIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "sales_upsertSalesRFQLine",
  "arguments": {
    "salesRfqId": "string",
    "customerPartId": "string",
    "quantity": [],
    "unitOfMeasureCode": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "salesRfqId": {
      "type": "string"
    },
    "customerPartId": {
      "type": "string"
    },
    "customerPartRevision": {
      "type": "string"
    },
    "itemId": {
      "type": "string"
    },
    "description": {
      "type": "string"
    },
    "quantity": {
      "type": "array"
    },
    "unitOfMeasureCode": {
      "type": "string"
    },
    "order": {
      "type": "number"
    },
    "modelUploadId": {
      "type": "string"
    }
  },
  "required": [
    "salesRfqId",
    "customerPartId",
    "quantity",
    "unitOfMeasureCode"
  ]
}