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 toolshipping.carrier.update· SDKclient.call('shipping.carrier.update', …) - Events:
shipping.config.updated
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "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"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "carrier_id": { "type": "string" } }, "required": [ "carrier_id" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)