shared_resolveSupplierPrice

WRITE

Resolve supplier price.

Parameters

priceBreaksany[]required
quantitynumberrequired
fallbackUnitPricenumberrequired
exchangeRatenumberrequired

Call it

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

call_tool
call_tool({
  "name": "shared_resolveSupplierPrice",
  "arguments": {
    "priceBreaks": [],
    "quantity": 0,
    "fallbackUnitPrice": 0,
    "exchangeRate": 0
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "priceBreaks": {
      "type": "array",
      "items": {}
    },
    "quantity": {
      "type": "number"
    },
    "fallbackUnitPrice": {
      "type": "number"
    },
    "exchangeRate": {
      "type": "number"
    }
  },
  "required": [
    "priceBreaks",
    "quantity",
    "fallbackUnitPrice",
    "exchangeRate"
  ]
}