POST api/Store/BulkMaximumBuinessSkuOrderUpdate

Request Information

URI Parameters

None.

Body Parameters

BulkMaximumBuinessSkuOrderUpdateData
NameDescriptionTypeAdditional information
businessId

integer

None.

userId

integer

None.

skuDetails

Collection of BulkMaximumBuinessSkuOrderUpdateItem

None.

Request Formats

application/json, text/json

Sample:
{
  "businessId": 1,
  "userId": 2,
  "skuDetails": [
    {
      "businessId": 1,
      "itemId": 1,
      "skuCode": "sample string 1",
      "maxOrder": 1,
      "maxPreOrder": 1,
      "numberOfDays": 1,
      "customerType": "sample string 2",
      "customerTypeId": 1,
      "locationId": 3
    },
    {
      "businessId": 1,
      "itemId": 1,
      "skuCode": "sample string 1",
      "maxOrder": 1,
      "maxPreOrder": 1,
      "numberOfDays": 1,
      "customerType": "sample string 2",
      "customerTypeId": 1,
      "locationId": 3
    }
  ]
}

application/xml, text/xml

Sample:
<BulkMaximumBuinessSkuOrderUpdateData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <businessId>1</businessId>
  <userId>2</userId>
  <skuDetails>
    <BulkMaximumBuinessSkuOrderUpdateItem>
      <businessId>1</businessId>
      <itemId>1</itemId>
      <skuCode>sample string 1</skuCode>
      <maxOrder>1</maxOrder>
      <maxPreOrder>1</maxPreOrder>
      <numberOfDays>1</numberOfDays>
      <customerType>sample string 2</customerType>
      <customerTypeId>1</customerTypeId>
      <locationId>3</locationId>
    </BulkMaximumBuinessSkuOrderUpdateItem>
    <BulkMaximumBuinessSkuOrderUpdateItem>
      <businessId>1</businessId>
      <itemId>1</itemId>
      <skuCode>sample string 1</skuCode>
      <maxOrder>1</maxOrder>
      <maxPreOrder>1</maxPreOrder>
      <numberOfDays>1</numberOfDays>
      <customerType>sample string 2</customerType>
      <customerTypeId>1</customerTypeId>
      <locationId>3</locationId>
    </BulkMaximumBuinessSkuOrderUpdateItem>
  </skuDetails>
</BulkMaximumBuinessSkuOrderUpdateData>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

VCAPIResponse
NameDescriptionTypeAdditional information
Version

string

None.

dateTime

string

None.

StatusCode

integer

None.

ErrorMessage

string

None.

Result

Object

None.

Response Formats

application/json, text/json

Sample:
{
  "Version": "1.0.0",
  "dateTime": "2025/04/28 14:34:14",
  "StatusCode": 1,
  "ErrorMessage": "sample string 2",
  "Result": {}
}

application/xml, text/xml

Sample:
<VCAPIResponse xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <StatusCode>1</StatusCode>
  <ErrorMessage>sample string 2</ErrorMessage>
  <Result />
</VCAPIResponse>