shipping.rate.delete
Remove one weight bracket from a (method, zone). Idempotent: a missing bracket answers ok.
- Scope:
shipping.write - System: no
- Reachable from:
POST /v1/commands/shipping.rate.delete(tenant credential) · MCP toolshipping.rate.delete· SDKclient.call('shipping.rate.delete', …) - Events:
shipping.config.updated
Input (JSON Schema)
Section titled “Input (JSON Schema)”{ "properties": { "method_id": { "minLength": 1, "type": "string" }, "weight_bracket_max_grams": { "exclusiveMinimum": 0, "maximum": 9007199254740991, "type": "integer" }, "zone_id": { "minLength": 1, "type": "string" } }, "required": [ "method_id", "zone_id", "weight_bracket_max_grams" ], "type": "object"}Result (200)
Section titled “Result (200)”{ "additionalProperties": false, "properties": { "deleted": { "type": "boolean" } }, "required": [ "deleted" ], "type": "object"}Errors
Section titled “Errors”validation_failed (400) · unauthorized (401) · forbidden (403) · conflict (409) · internal (500)