purchasing_insertSupplierQuote
WRITECreate a new supplier quote with all business logic - generates sequence, creates supplier interaction, sets up external link. LLM can create a quote with just supplierId..
Parameters
supplierIdstringrequiredsupplierQuoteIdstringoptionallocationIdstringoptionalstatusstringoptionalcurrencyCodestringoptionalexpirationDatestringoptionalsupplierContactIdstringoptionalsupplierLocationIdstringoptionalnotesstringoptionalcustomFieldsanyoptionalquotedDatestringoptionalsupplierReferencestringoptionalsupplierQuoteTypestringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "purchasing_insertSupplierQuote",
"arguments": {
"supplierId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"supplierId": {
"type": "string"
},
"supplierQuoteId": {
"type": "string"
},
"locationId": {
"type": "string"
},
"status": {
"type": "string"
},
"currencyCode": {
"type": "string"
},
"expirationDate": {
"type": "string"
},
"supplierContactId": {
"type": "string"
},
"supplierLocationId": {
"type": "string"
},
"notes": {
"type": "string"
},
"customFields": {},
"quotedDate": {
"type": "string"
},
"supplierReference": {
"type": "string"
},
"supplierQuoteType": {
"type": "string"
}
},
"required": [
"supplierId"
]
}