---
title: "Update strategy channel"
method: PATCH
path: "/api/v1/strategies/{strategyId}/channels/{id}"
tags: ["strategy-channels"]
---

# Update strategy channel

`PATCH /api/v1/strategies/{strategyId}/channels/{id}`

Partially updates a strategy channel by its identifier. The composite key (strategy, channel) is immutable.

## Path parameters

- `strategyId` string, uuid, required
- `id` string, uuid, required

## Request body

- StrategyChannelUpdate
  - `price_list_id` string, uuid, nullable
  - `active` boolean
  - `inventory_allocation` InventoryAllocationUpdate
    - `type` 'FIXED' | 'PERCENTAGE', required
    - `value` number, required
  - `delivery_promise` DeliveryPromiseUpdate
    - `value` number, required
    - `unit` 'MINUTES' | 'HOURS' | 'DAYS', required
  - `metadata` object, nullable

## Response `200`

Strategy channel updated.

- StrategyChannelUpdateResponse
  - `metadata` object, nullable, required
  - `id` string, required
  - `strategy_id` string, required
  - `channel_code` string, required
  - `active` boolean, required
  - `inventory_allocation` object, required
    - `type` 'FIXED' | 'PERCENTAGE', required
    - `value` number, required
  - `price_list_id` string, nullable, required
  - `delivery_promise` object, required
    - `value` number, required
    - `unit` 'MINUTES' | 'HOURS' | 'DAYS', required
  - `created_at` string, required
  - `updated_at` string, required

## Other responses

- `400` — Request payload, query string, or path parameter failed validation.
- `401` — Authentication is missing, malformed, expired, or refers to a session that is no longer active.
- `403` — The caller is authenticated but lacks the required permission for this action.
- `404` — One of the referenced resources (Strategy, StrategyChannel, PriceList) was not found in the caller account.
- `422` — The payload passed schema validation but breaks a domain invariant — typically an invalid inventory allocation value.
- `500` — Unexpected server error. The response body never leaks internal details.

## Changes

- **2026-07-07** `a3b4750a505f` — 1 breaking, 13 info
  - the `price_list_id` request property type changed from `object` to `string`
  - added the new optional request property `active`
  - added the new optional request property `delivery_promise`
  - added the new optional request property `inventory_allocation`
  - …10 more
- **2026-07-07** `84194c31ab85` — 9 breaking, 5 warning, 1 info
  - removed the required property `active` from the response with the `200` status
  - removed the required property `channel_code` from the response with the `200` status
  - removed the required property `created_at` from the response with the `200` status
  - removed the required property `delivery_promise` from the response with the `200` status
  - …11 more

[Change history](https://skmtc.dev/kruzer-corp/apis/oms-api/changes/api/v1/strategies/:strategyId/channels/:id/patch.md)

---

[API](https://skmtc.dev/kruzer-corp/apis/oms-api.md) · [All operations](https://skmtc.dev/kruzer-corp/apis/oms-api/llms.txt) · [OpenAPI document](https://skmtc-service-production.skmtc.workers.dev/v1/apis/kruzer-corp/oms-api/revisions/38ef6e16a7a8/schema)
