diff --git a/guides/v2.3/rest/modules/inventory/check-salable-quantity.md b/guides/v2.3/rest/modules/inventory/check-salable-quantity.md index 81979b9d6df..13ceb6225e3 100644 --- a/guides/v2.3/rest/modules/inventory/check-salable-quantity.md +++ b/guides/v2.3/rest/modules/inventory/check-salable-quantity.md @@ -29,7 +29,7 @@ Name | Description | Type --- | --- | --- `sku` | The SKU of the product | String `stock_id` | The ID of the stock the product is assigned to | Integer -`requestedQty` | The requested quantity of products | Integer +`requestedQty` | The requested quantity of products | Float `type` | The type of sales channel the stock is assigned to. For 2.3, this value must be `website`. | String `code` | The code of the sales channel (website) | String {:style="table-layout:auto;"} diff --git a/guides/v2.3/rest/modules/inventory/manage-low-quantity.md b/guides/v2.3/rest/modules/inventory/manage-low-quantity.md index 536df7753e7..a38c26e29e8 100644 --- a/guides/v2.3/rest/modules/inventory/manage-low-quantity.md +++ b/guides/v2.3/rest/modules/inventory/manage-low-quantity.md @@ -34,7 +34,7 @@ POST /V1/inventory/low-quantity-notifications-delete Name | Description | Type | Requirements --- | --- | --- | --- `source_code` | The product's assigned source code | String | Required to create or delete a threshold -`notify_stock_qty` | The threshold at which Magento notifies the merchant that the salable quantity of a product is low. | Number | Required to create a threshold +`notify_stock_qty` | The threshold at which Magento notifies the merchant that the salable quantity of a product is low. | Float | Required to create a threshold `sku` | The SKU of the affected product | String | Required for to create or delete a threshold diff --git a/guides/v2.3/rest/modules/inventory/manage-source-items.md b/guides/v2.3/rest/modules/inventory/manage-source-items.md index 675490b7961..487ec2304a6 100644 --- a/guides/v2.3/rest/modules/inventory/manage-source-items.md +++ b/guides/v2.3/rest/modules/inventory/manage-source-items.md @@ -28,7 +28,7 @@ Name | Description | Type | Requirements --- | --- | --- | --- sku | The SKU of an existing product | String | Required to assign or unassign a source source_code | The source to assign or unassign | String | Required to assign or unassign a source -quantity | The total amount of inventory available for this SKU and source | Number | Optional +quantity | The total amount of inventory available for this SKU and source | Float | Optional status | Indicates whether the product is out of stock (0) or in stock (1) | Integer | Optional {:style="table-layout:auto;"} diff --git a/guides/v2.3/rest/modules/inventory/manage-source-selection.md b/guides/v2.3/rest/modules/inventory/manage-source-selection.md index a0dbbae87e4..23567545def 100644 --- a/guides/v2.3/rest/modules/inventory/manage-source-selection.md +++ b/guides/v2.3/rest/modules/inventory/manage-source-selection.md @@ -82,8 +82,8 @@ Name | Description | Type | Requirements --- | --- | --- | --- `stock_id` | The ID of the stock | Integer | Required `items` | An array containing the SKU and quantity of items in the order | Array | Required -`sku` | The SKU of a product to be shipped | String | Required for each item -`qty` | The quantity of a product to be shipped | Number | Required for each item +`sku` | The SKU of a product to be shipped | String | Required for each item +`qty` | The quantity of a product to be shipped | Float | Required for each item `algorithmCode` | The name of the SSA to implement. For 2.3, this value must be `priority`. | String | Required `destination_address` | An extension attribute that defines the shipment address when the Distance Priority SSA is used. | Object | Required for the Distance Priority SSA `country` | The country code of the shipping address | String | Required for the Distance Priority SSA