Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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;"}
Expand Down
2 changes: 1 addition & 1 deletion guides/v2.3/rest/modules/inventory/manage-low-quantity.md
Original file line number Diff line number Diff line change
Expand Up @@ -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


Expand Down
2 changes: 1 addition & 1 deletion guides/v2.3/rest/modules/inventory/manage-source-items.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;"}

Expand Down
4 changes: 2 additions & 2 deletions guides/v2.3/rest/modules/inventory/manage-source-selection.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down