Skip to content
v0.3

shipping.carrier.update

Update a carrier (partial; a present null clears the tracking URL template — the carrier publishes no tracking page).

  • Scope: shipping.write
  • System: no
  • Reachable from: POST /v1/commands/shipping.carrier.update (tenant credential) · MCP tool shipping.carrier.update · SDK client.call('shipping.carrier.update', …)
  • Events: shipping.config.updated
{
"properties": {
"carrier_id": {
"minLength": 1,
"type": "string"
},
"name": {
"minLength": 1,
"type": "string"
},
"tracking_url_template": {
"anyOf": [
{
"minLength": 1,
"type": "string"
},
{
"type": "null"
}
]
}
},
"required": [
"carrier_id"
],
"type": "object"
}
{
"additionalProperties": false,
"properties": {
"carrier_id": {
"type": "string"
}
},
"required": [
"carrier_id"
],
"type": "object"
}

validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)