POST api/BundleSku/AddUpdateBundleSku
Request Information
URI Parameters
None.
Body Parameters
AddUpdateBundleSku| Name | Description | Type | Additional information | 
|---|---|---|---|
| businessId | integer | None. | |
| userId | integer | None. | |
| bundleSkuId | integer | None. | |
| isBundleSkuDeactivated | integer | None. | |
| primaryItemId | integer | None. | |
| primarySkuCode | string | None. | |
| primarySkuQuantity | integer | None. | |
| secondaryItemId | integer | None. | |
| secondarySkuCode | string | None. | |
| secondarySkuQuantity | integer | None. | |
| bizWiseDetails | Collection of BundleSkuInput | None. | 
Request Formats
application/json, text/json
            Sample:
        
{
  "businessId": 1,
  "userId": 2,
  "bundleSkuId": 3,
  "isBundleSkuDeactivated": 4,
  "primaryItemId": 5,
  "primarySkuCode": "sample string 6",
  "primarySkuQuantity": 7,
  "secondaryItemId": 8,
  "secondarySkuCode": "sample string 9",
  "secondarySkuQuantity": 10,
  "bizWiseDetails": [
    {
      "businessId": 1,
      "primarySkuPrice": 2.0,
      "secondarySkuPrice": 3.0,
      "bundlePrice": 4.0,
      "isActive": 5
    },
    {
      "businessId": 1,
      "primarySkuPrice": 2.0,
      "secondarySkuPrice": 3.0,
      "bundlePrice": 4.0,
      "isActive": 5
    }
  ]
}
        application/xml, text/xml
            Sample:
        
<AddUpdateBundleSku xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <businessId>1</businessId>
  <userId>2</userId>
  <bundleSkuId>3</bundleSkuId>
  <isBundleSkuDeactivated>4</isBundleSkuDeactivated>
  <primaryItemId>5</primaryItemId>
  <primarySkuCode>sample string 6</primarySkuCode>
  <primarySkuQuantity>7</primarySkuQuantity>
  <secondaryItemId>8</secondaryItemId>
  <secondarySkuCode>sample string 9</secondarySkuCode>
  <secondarySkuQuantity>10</secondarySkuQuantity>
  <bizWiseDetails>
    <BundleSkuInput>
      <businessId>1</businessId>
      <primarySkuPrice>2</primarySkuPrice>
      <secondarySkuPrice>3</secondarySkuPrice>
      <bundlePrice>4</bundlePrice>
      <isActive>5</isActive>
    </BundleSkuInput>
    <BundleSkuInput>
      <businessId>1</businessId>
      <primarySkuPrice>2</primarySkuPrice>
      <secondarySkuPrice>3</secondarySkuPrice>
      <bundlePrice>4</bundlePrice>
      <isActive>5</isActive>
    </BundleSkuInput>
  </bizWiseDetails>
</AddUpdateBundleSku>
        application/x-www-form-urlencoded
            Sample:
    
Sample not available.
Response Information
Resource Description
VCAPIResponse| Name | Description | Type | Additional 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/10/31 15:44:44",
  "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>