sales_upsertSalesRFQ

WRITE

Upsert sales r f q.

Parameters

customerIdstringrequired
rfqDatestringrequired
idstringoptional
rfqIdstringoptional
customerLocationIdstringoptional
customerContactIdstringoptional
customerEngineeringContactIdstringoptional
customerReferencestringoptional
expirationDatestringoptional
externalNotesstringoptional
internalNotesstringoptional
locationIdstringoptional
statusstringoptional
salesPersonIdstringoptional

Call it

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

call_tool
call_tool({
  "name": "sales_upsertSalesRFQ",
  "arguments": {
    "customerId": "string",
    "rfqDate": "string"
  }
})

Input schema

The raw JSON Schema the tool validates its arguments against.

schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string"
    },
    "rfqId": {
      "type": "string"
    },
    "customerLocationId": {
      "type": "string"
    },
    "customerContactId": {
      "type": "string"
    },
    "customerEngineeringContactId": {
      "type": "string"
    },
    "customerId": {
      "type": "string"
    },
    "customerReference": {
      "type": "string"
    },
    "expirationDate": {
      "type": "string"
    },
    "externalNotes": {
      "type": "string"
    },
    "internalNotes": {
      "type": "string"
    },
    "locationId": {
      "type": "string"
    },
    "rfqDate": {
      "type": "string"
    },
    "status": {
      "type": "string"
    },
    "salesPersonId": {
      "type": "string"
    }
  },
  "required": [
    "customerId",
    "rfqDate"
  ]
}