purchasing_upsertPurchasingRFQ
WRITEUpsert purchasing r f q.
Parameters
rfqIdstringrequiredrfqDatestringrequiredidstringoptionalexpirationDatestringoptionallocationIdstringoptionalemployeeIdstringoptionalstatusstringoptionalcustomFieldsanyoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "purchasing_upsertPurchasingRFQ",
"arguments": {
"rfqId": "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"
},
"rfqDate": {
"type": "string"
},
"expirationDate": {
"type": "string"
},
"locationId": {
"type": "string"
},
"employeeId": {
"type": "string"
},
"status": {
"type": "string"
},
"customFields": {}
},
"required": [
"rfqId",
"rfqDate"
]
}