sales_insertSalesRFQ

WRITE

Insert sales r f q.

Parameters

customerIdstringrequired
rfqIdstringoptional
rfqDatestringoptional
expirationDatestringoptional
locationIdstringoptional
salesPersonIdstringoptional
customerContactIdstringoptional
customerReferencestringoptional
statusenumoptional
notesstringoptional
customFieldsanyoptional

Call it

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

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

Input schema

The raw JSON Schema the tool validates its arguments against.

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