sales_resolvePurchaseToOrderPrices

WRITE

Resolve purchase to order prices.

Parameters

quoteIdstringrequired
quoteLineIdstringrequired
quantitiesnumber[]required

Call it

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

call_tool
call_tool({
  "name": "sales_resolvePurchaseToOrderPrices",
  "arguments": {
    "quoteId": "string",
    "quoteLineId": "string",
    "quantities": []
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "quoteId": {
      "type": "string"
    },
    "quoteLineId": {
      "type": "string"
    },
    "quantities": {
      "type": "array",
      "items": {
        "type": "number"
      }
    }
  },
  "required": [
    "quoteId",
    "quoteLineId",
    "quantities"
  ]
}