POST api/Product/UpdateProductSKUInventory?ProviderID={ProviderID}
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| ProviderID | integer |
Required |
Body Parameters
Collection of ProductSKUInventory| Name | Description | Type | Additional information |
|---|---|---|---|
| SKUID | integer |
None. |
|
| ProductCode | string |
None. |
|
| Code | string |
None. |
|
| UPC | string |
None. |
|
| Stock | integer |
None. |
|
| StockCode | string |
None. |
|
| SCProductID | integer |
None. |
|
| ProductID | integer |
None. |
|
| IsLocked | boolean |
None. |
|
| ProductModifiedDate | date |
None. |
Request Formats
application/json, text/json, text/html
Sample:
[
{
"SKUID": 1,
"ProductCode": "sample string 2",
"Code": "sample string 3",
"UPC": "sample string 4",
"Stock": 5,
"StockCode": "sample string 6",
"SCProductID": 7,
"ProductID": 8,
"IsLocked": true,
"ProductModifiedDate": "10/30/2025"
},
{
"SKUID": 1,
"ProductCode": "sample string 2",
"Code": "sample string 3",
"UPC": "sample string 4",
"Stock": 5,
"StockCode": "sample string 6",
"SCProductID": 7,
"ProductID": 8,
"IsLocked": true,
"ProductModifiedDate": "10/30/2025"
}
]
application/xml, text/xml
Sample:
<ArrayOfProductSKUInventory xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SellersCommerce.ViewModels.Products">
<ProductSKUInventory>
<Code>sample string 3</Code>
<IsLocked>true</IsLocked>
<ProductCode>sample string 2</ProductCode>
<ProductID>8</ProductID>
<ProductModifiedDate>2025-10-30T01:37:28.3864783+00:00</ProductModifiedDate>
<SCProductID>7</SCProductID>
<SKUID>1</SKUID>
<Stock>5</Stock>
<StockCode>sample string 6</StockCode>
<UPC>sample string 4</UPC>
</ProductSKUInventory>
<ProductSKUInventory>
<Code>sample string 3</Code>
<IsLocked>true</IsLocked>
<ProductCode>sample string 2</ProductCode>
<ProductID>8</ProductID>
<ProductModifiedDate>2025-10-30T01:37:28.3864783+00:00</ProductModifiedDate>
<SCProductID>7</SCProductID>
<SKUID>1</SKUID>
<Stock>5</Stock>
<StockCode>sample string 6</StockCode>
<UPC>sample string 4</UPC>
</ProductSKUInventory>
</ArrayOfProductSKUInventory>
application/x-www-form-urlencoded
Sample:
Sample not available.
Response Information
Resource Description
booleanResponse Formats
application/json, text/json, text/html
Sample:
true
application/xml, text/xml
Sample:
<boolean xmlns="http://schemas.microsoft.com/2003/10/Serialization/">true</boolean>