purchasing_updateSupplierQuote

WRITE

Update an existing supplier quote - handles exchange rate updates when currency changes.

Parameters

idstringrequired
statusstringoptional
currencyCodestringoptional
expirationDatestringnulloptional
supplierContactIdstringnulloptional
supplierLocationIdstringnulloptional
notesstringnulloptional
customFieldsanyoptional

Call it

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

call_tool
call_tool({
  "name": "purchasing_updateSupplierQuote",
  "arguments": {
    "id": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "currencyCode": {
      "type": "string"
    },
    "expirationDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "supplierContactId": {
      "type": [
        "string",
        "null"
      ]
    },
    "supplierLocationId": {
      "type": [
        "string",
        "null"
      ]
    },
    "notes": {
      "type": [
        "string",
        "null"
      ]
    },
    "customFields": {}
  },
  "required": [
    "id"
  ]
}