quality_upsertIssue
WRITEUpsert issue.
Parameters
prioritystringrequiredsourcestringrequirednamestringrequiredlocationIdstringrequirednonConformanceTypeIdstringrequiredopenDatestringrequiredidstringoptionalnonConformanceIdstringoptionaldescriptionstringoptionalrequiredActionIdsany[]optionalapprovalRequirementsstringoptionalnonConformanceWorkflowIdstringoptionaldueDatestringoptionalcloseDatestringoptionalquantitynumberoptionalitemsany[]optionaljobOperationIdstringoptionalcustomerIdstringoptionalsalesOrderLineIdstringoptionaloperationSupplierProcessIdstringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "quality_upsertIssue",
"arguments": {
"priority": "string",
"source": "string",
"name": "string",
"locationId": "string",
"nonConformanceTypeId": "string",
"openDate": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"nonConformanceId": {
"type": "string"
},
"priority": {
"type": "string"
},
"source": {
"type": "string"
},
"name": {
"type": "string"
},
"description": {
"type": "string"
},
"requiredActionIds": {
"type": "array"
},
"approvalRequirements": {
"type": "string"
},
"locationId": {
"type": "string"
},
"nonConformanceWorkflowId": {
"type": "string"
},
"nonConformanceTypeId": {
"type": "string"
},
"openDate": {
"type": "string"
},
"dueDate": {
"type": "string"
},
"closeDate": {
"type": "string"
},
"quantity": {
"type": "number"
},
"items": {
"type": "array"
},
"jobOperationId": {
"type": "string"
},
"customerId": {
"type": "string"
},
"salesOrderLineId": {
"type": "string"
},
"operationSupplierProcessId": {
"type": "string"
}
},
"required": [
"priority",
"source",
"name",
"locationId",
"nonConformanceTypeId",
"openDate"
]
}