sales_updateSalesRFQ
WRITEUpdate sales r f q.
Parameters
idstringrequiredcustomerIdstringoptionalcustomerContactIdstringnulloptionalcustomerReferencestringnulloptionalrfqDatestringoptionalexpirationDatestringnulloptionallocationIdstringoptionalsalesPersonIdstringnulloptionalstatusenumoptionalnotesstringnulloptionalcustomFieldsanyoptionalCall 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"
]
}