From c4866a3289b75f6011e1ec96afe0657a249c7dae Mon Sep 17 00:00:00 2001 From: bc-andreadao <96258747+bc-andreadao@users.noreply.github.com> Date: Wed, 6 Nov 2024 10:38:21 -0600 Subject: [PATCH] DEVDOCS-6142: Shipping V2 API, update channel_ids field (part 2) (#635) --- .../shipping/msf-international-enhancements.mdx | 6 +++--- reference/shipping.v2.yml | 12 ++++++------ 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/docs/store-operations/shipping/msf-international-enhancements.mdx b/docs/store-operations/shipping/msf-international-enhancements.mdx index 0ecdee223..b3a5024dc 100644 --- a/docs/store-operations/shipping/msf-international-enhancements.mdx +++ b/docs/store-operations/shipping/msf-international-enhancements.mdx @@ -15,7 +15,7 @@ We don't support multiple accounts of the same carrier (e.g., using distinct acc ## Settings -Shipping methods have a `channels` setting. This setting determines which channels can display the shipping zone's method. Shipping methods are available on all channels by default. +Shipping methods have a `channel_ids` setting. This setting determines which channels can display the shipping zone's method. Shipping methods are available on all channels by default. For reference, see the [Shipping method](/docs/rest-management/shipping-v2/shipping-method) endpoint of the REST Management API. @@ -42,7 +42,7 @@ The following example creates a shipping method in a zone by sending a request t "handling_fees": { "fixed_surcharge": "3" }, - "channels": [1, 3] + "channel_ids": [1, 3] } ``` @@ -61,7 +61,7 @@ The following example creates a shipping method in a zone by sending a request t "handling_fees": { "fixed_surcharge": "3" }, - "channels": [1, 3] + "channel_ids": [1, 3] } ``` diff --git a/reference/shipping.v2.yml b/reference/shipping.v2.yml index e3e88f2f0..c646c2dd6 100644 --- a/reference/shipping.v2.yml +++ b/reference/shipping.v2.yml @@ -1213,7 +1213,7 @@ paths: | Property | Type | Description | | - | - | - | - | channels | array | Channels associated with the method as an array of integers. | + | channel_ids | array | Channels associated with the method as an array of integers. | summary: Create a Shipping Method tags: - Shipping Method @@ -1301,7 +1301,7 @@ paths: "settings": { "rate": 7 }, - "channels": [1] + "channel_ids": [1] }, ``` @@ -1358,7 +1358,7 @@ paths: } ] }, - "channels": [1] + "channel_ids": [1] } ``` @@ -1411,7 +1411,7 @@ paths: } ] }, - "channels": [1] + "channel_ids": [1] } ``` @@ -1452,7 +1452,7 @@ paths: | Property | Type | Description | | - | - | - | - | channels | array | Channels associated with the method as an array of integers. | + | channel_ids | array | Channels associated with the method as an array of integers. | summary: Get a Shipping Method tags: - Shipping Method @@ -1717,7 +1717,7 @@ paths: | Property | Type | Description | | - | - | - | - | channels | array | Channels associated with the method as an array of integers. | + | channel_ids | array | Channels associated with the method as an array of integers. | summary: Update a Shipping Method tags: - Shipping Method