4WS Suite
Home
API Reference
  • Data mangement API
  • Documents API
Home
API Reference
  • Data mangement API
  • Documents API
Fourwayshop
  1. Price dimension groupings
  • Login
    • login
      POST
  • Product
    • Brand
      • Get All Brands
      • Get A Brand
      • Insert brand
      • Update brand
    • Season
      • Get All Seasons
      • Get A Season
      • Insert season
      • Update season
    • Attribute
      • Get All Attribute Types
      • Get Attribute Type
      • Get Attribute
      • Insert attribute
      • Update attribute
    • Hierarchy
      • Insert hierarchy
      • Update hierarchy
    • Dimension groups
      • Insert dimension group
      • Update dimension group
    • Dimension
      • Insert dimension
      • Update dimension
      • Delete dimension
    • Product
      • Get products
      • Get product
      • Get product grouping
      • Get SKU's barcodes
      • Get product stock
      • Insert product
      • Update product
    • Activate dimensions on products
      • Insert active dimensions
      • Delete active dimensions
    • Barcode
      • Get SKU from barcode
      • Generate missing barcodes
      • Generate missing barcode for SKU
      • Insert barcode
      • Delete barcode
    • Prices
      • Get product prices
    • Price dimension groupings
      • Get Dimension Price Grouping
        GET
      • Get All Dimension Price Grouping
        GET
      • Insert dimension grouping
        POST
      • Update dimension grouping
        PATCH
      • Delete dimension grouping
        DELETE
    • Assortment
      • insert product assortment
      • delete product assortment
    • Image
      • Get images
      • Add image
      • Replace image
      • Delete image
    • Supplier
      • Get Item suppliers
      • Insert item supplier
      • Delete item supplier
      • Update item supplier
    • Custom category
      • Get Custom code
      • Insert Custom code
      • Update Custom code
    • Vat
      • Vat types
        • Get VAT type
        • Get VAT types
      • VATs
        • Get VATs
        • Get VATs by type
        • Get VAT
      • Vat rates
        • Get VAT rates
        • Get single VAT rates
    • Stock
      • Insert stock
      • Get stock
  • Price lists
    • Get price lists
      GET
    • Get price lists by type
      GET
    • Get price list
      GET
    • Get prices from price list
      GET
    • Get entities from price lists
      GET
    • Insert Price List
      POST
    • Insert Product Price
      POST
    • Insert Entity On Price Lists
      POST
    • Update price list
      PATCH
    • Delete all product prices
      DELETE
    • Delete single product price
      DELETE
    • Delete entity from a price lists
      DELETE
  • Supplier
    • Supplier contacts
    • Supplier addresses
    • Get Suppliers
    • Get A Specific Supplier
    • Insert supplier
    • Update supplier
  • Entities
    • Get entities
    • Get entity
    • Insert entity
    • Update entity
  • Miscellaneous
    • Get requests rate limits
  • Catalog
    • Get Catalogs details
    • Get Catalog details by Code
    • Get products by Catalog Code
  • Export
    • Get bulk CSV Export
  1. Price dimension groupings

Update dimension grouping

PATCH
/api/v1/dimensionGroupings/{DIMENSION_GROUPING}
Last modified:2025-02-07 14:53:38

Updating Price Dimension Grupping#

This API enables updating an existing price band (dimension grouping) identified by the parameter DIMENSION_GROUPING. It allows for modifications to the localized descriptions that define the price band for products.
NOTE
For further information on dimension price dropping refer to Dimensiong group vs Dimension grouping

Actors#

API Client: The system or user initiating the request.
4ws.trade: The backend system that processes the request.

Languages#

This API supports multilingual descriptions through fields such as description_it (Italian), description_en (English), and description_fr (French). These fields allow localized data for international support.
Manage Languages
To understand how languages are managed, please refer to our Managing Languages Documentation.

Preconditions#

The external system must have the necessary permissions and access to the document creation service, please refer to Authentication.
The DIMENSION_GROUPING specified in the request URL must correspond to an existing price band; otherwise, the API will return an error.
At least one of the fields (description_it, description_en, description_fr) should be specified in the request payload to update the description data.

Main Success Scenario#

The client sends a PATCH request with the updated descriptions, and the API successfully updates the corresponding price band. The response includes the prog_id and dimension_grouping, confirming the update.
{
  "dimensionGrouping": {
    "prog_id": 951,
    "dimension_grouping": "KID_4"
  }
}
INFO
To associate price dimension grupping with dimensions, specify the attribute dimension_grouping in the body of Insert dimension and Update dimension services.

Alternate Flows#

1.
Nonexistent Price Band:
If the specified DIMENSION_GROUPING does not exist, the API returns an error message stating that the dimension group was not found.
{
  "message": "Dimension group not found with dimension_group: {{dimension_group}}"
}
2.
Invalid Data:
If no descriptions are provided or an invalid request structure is sent, the API may return a validation error.

Sequence Diagram#

Best Practices
Please refer to Best Practices for Error Handling in External System for best practices on implementation.

Code Examples in Node.js#

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
Path Params

Header Params

Body Params application/json

Example
{
    "description_it": "{{description_it}}"
}

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request PATCH '/api/v1/dimensionGroupings/' \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data-raw '{
    "description_it": "{{description_it}}"
}'

Responses

🟢200Success
application/json
Body

Example
{
    "dimensionGrouping": {
        "prog_id": 951,
        "dimension_grouping": "KID_4"
    }
}
🟠401Authentication failed
🟠403Operation not allowed
🟠422Dimension group not found with dimension_group
🟠422Unique constraint error
Modified at 2025-02-07 14:53:38
Previous
Insert dimension grouping
Next
Delete dimension grouping
Built with