Docs
Catalog API
Complex Rules

Complex rules

Get Complex Rules

GET /catalog/products/{product_id}/complex-rules

Request

Returns a list of all product Complex Rules. Optional parameters may be passed in.

Authentication

  • X-Auth-Token in header
    required

Parameters

  • store_hash in path - string

example

Response

Body

object | application/json

Complex Rule Response

  • data
    array[object]

  • meta
    object

    Data about the response, including pagination and collection totals.

example

Create a Complex Rule

POST /catalog/products/{product_id}/complex-rules

Request

Creates a product Complex Rule.

Required Fields

  • modifier_id
  • modifier_value_id
  • variant_id

Read-Only Fields

  • complex_rule_id
  • conditions_id
  • rule_id
  • combination_id
  • id

Authentication

  • X-Auth-Token in header
    required

Parameters

  • store_hash in path - string

Body

object | application/json

Common ComplexRule properties.

  • product_id
    integer or null

    The unique numeric ID of the product with which the rule is associated; increments sequentially.

    Example: 67
  • sort_order
    integer

    The priority to give this rule when making adjustments to the product properties.

    Min: -2147483648
    Max: 2147483647
  • enabled
    boolean

    Flag for determining whether the rule is to be used when adjusting a productʼs price, weight, image, or availabilty.

    Example: true
  • stop
    boolean

    Flag for determining whether other rules should not be applied after this rule has been applied.

  • purchasing_disabled
    boolean

    Flag for determining whether the rule should disable purchasing of a product when the conditions are applied.

  • purchasing_disabled_message
    string

    Message displayed on the storefront when a rule disables the purchasing of a product.

    >= 0 characters<= 255 characters
    Example: This product is not available at this time.
  • purchasing_hidden
    boolean

    Flag for determining whether the rule should hide purchasing of a product when the conditions are applied.

  • image_url
    string

    The URL for an image displayed on the storefront when the conditions are applied. Limit of 8MB per file.

    Example: https://cdn8.bigcommerce.com/s-123456/product_images/d/fakeimage.png
  • price_adjuster
    object

    Adjuster for Complex Rules.

  • weight_adjuster
    object

    Adjuster for Complex Rules.

  • conditions
    array[object]

example

Response

Body

object | application/json
  • data
    object

    Common ComplexRule properties.

  • meta
    object

    Response metadata.

example

Get a Product Complex Rule

GET /catalog/products/{product_id}/complex-rules/{complex_rule_id}

Request

Returns a single Complex Rule. Optional parameters can be passed in.

Authentication

  • X-Auth-Token in header
    required

Parameters

  • store_hash in path - string

example

Response

Body

object | application/json
  • data
    object

    Common ComplexRule properties.

  • meta
    object

    Response metadata.

example

Update a Product Complex Rule

PUT /catalog/products/{product_id}/complex-rules/{complex_rule_id}

Request

Updates a Complex Rule.

Required Fields:

  • none

Read-Only Fields:

  • complex_rule_id
  • conditions_id
  • rule_id
  • combination_id
  • id

Authentication

  • X-Auth-Token in header
    required

Parameters

  • store_hash in path - string

Body

object | application/json

Common ComplexRule properties.

  • product_id
    integer or null

    The unique numeric ID of the product with which the rule is associated; increments sequentially.

    Example: 67
  • sort_order
    integer

    The priority to give this rule when making adjustments to the product properties.

    Min: -2147483648
    Max: 2147483647
  • enabled
    boolean

    Flag for determining whether the rule is to be used when adjusting a productʼs price, weight, image, or availabilty.

    Example: true
  • stop
    boolean

    Flag for determining whether other rules should not be applied after this rule has been applied.

  • purchasing_disabled
    boolean

    Flag for determining whether the rule should disable purchasing of a product when the conditions are applied.

  • purchasing_disabled_message
    string

    Message displayed on the storefront when a rule disables the purchasing of a product.

    >= 0 characters<= 255 characters
    Example: This product is not available at this time.
  • purchasing_hidden
    boolean

    Flag for determining whether the rule should hide purchasing of a product when the conditions are applied.

  • image_url
    string

    The URL for an image displayed on the storefront when the conditions are applied. Limit of 8MB per file.

    Example: https://cdn8.bigcommerce.com/s-123456/product_images/d/fakeimage.png
  • price_adjuster
    object

    Adjuster for Complex Rules.

  • weight_adjuster
    object

    Adjuster for Complex Rules.

  • conditions
    array[object]

example

Response

Body

object | application/json
  • data
    object

    Common ComplexRule properties.

  • meta
    object

    Response metadata.

example

Delete a Product Complex Rule

DELETE /catalog/products/{product_id}/complex-rules/{complex_rule_id}

Request

Deletes a product Complex Rule.

Authentication

  • X-Auth-Token in header
    required

Parameters

  • store_hash in path - string

example

Response

Did you find what you were looking for?