sales_updateSalesRFQ

WRITE

Update sales r f q.

Parameters

idstringrequired
customerIdstringoptional
customerContactIdstringnulloptional
customerReferencestringnulloptional
rfqDatestringoptional
expirationDatestringnulloptional
locationIdstringoptional
salesPersonIdstringnulloptional
statusenumoptional
notesstringnulloptional
customFieldsanyoptional

Call it

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

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

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "customerId": {
      "type": "string"
    },
    "customerContactId": {
      "type": [
        "string",
        "null"
      ]
    },
    "customerReference": {
      "type": [
        "string",
        "null"
      ]
    },
    "rfqDate": {
      "type": "string"
    },
    "expirationDate": {
      "type": [
        "string",
        "null"
      ]
    },
    "locationId": {
      "type": "string"
    },
    "salesPersonId": {
      "type": [
        "string",
        "null"
      ]
    },
    "status": {
      "type": "string",
      "enum": [
        "Draft",
        "Ready for Quote",
        "Quoted",
        "Closed"
      ]
    },
    "notes": {
      "type": [
        "string",
        "null"
      ]
    },
    "customFields": {}
  },
  "required": [
    "id"
  ]
}