inventory_upsertShipment
WRITEUpsert shipment.
Parameters
idstringrequiredshipmentIdstringrequiredlocationIdstringoptionalsourceDocumentstringoptionalsourceDocumentIdstringoptionaltrackingNumberstringoptionalshippingMethodIdstringoptionalsourceDocumentReadableIdstringoptionalcustomerIdstringoptionalCall it
Invoke it through the call_tool meta-tool with its arguments:
call_tool
call_tool({
"name": "inventory_upsertShipment",
"arguments": {
"id": "string",
"shipmentId": "string"
}
})Input schema
The raw JSON Schema the tool validates its arguments against.
schema
{
"type": "object",
"properties": {
"id": {
"type": "string"
},
"shipmentId": {
"type": "string"
},
"locationId": {
"type": "string"
},
"sourceDocument": {
"type": "string"
},
"sourceDocumentId": {
"type": "string"
},
"trackingNumber": {
"type": "string"
},
"shippingMethodId": {
"type": "string"
},
"sourceDocumentReadableId": {
"type": "string"
},
"customerId": {
"type": "string"
}
},
"required": [
"id",
"shipmentId"
]
}