4WS Suite
Home
API Reference
  • Data mangement API
  • Documents API
Home
API Reference
  • Data mangement API
  • Documents API
Fourwayshop
  1. Barcode
  • 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
        GET
      • Generate missing barcodes
        POST
      • Generate missing barcode for SKU
        POST
      • Insert barcode
        POST
      • Delete barcode
        DELETE
    • Prices
      • Get product prices
    • Price dimension groupings
      • Get Dimension Price Grouping
      • Get All Dimension Price Grouping
      • Insert dimension grouping
      • Update dimension grouping
      • Delete dimension grouping
    • 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. Barcode

Get SKU from barcode

GET
/api/v1/products/barcodes/{BARCODE}
Last modified:2025-02-19 11:06:35

Retrieve SKU Associated with a Barcode#

This API allows the retrieval of the SKU associated with a specific barcode ({BARCODE}). If a SKU is found, the API returns the product's item code, dimensions, and a flag (moved) indicating whether this SKU has been recorded in any inventory movement documents.

Actors#

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

Preconditions#

A valid BARCODE must be provided in the request.
The barcode should be present in the system to yield associated SKU information; otherwise, a 404 error will be returned.
The external system must have the necessary permissions and access to the document creation service, please refer to Authentication.

Main Success Scenario#

1.
The client sends a GET request with a valid BARCODE.
2.
The API checks for a SKU associated with the barcode.
3.
If the SKU exists, the API returns the item code, dimensions, barcode type, and moved status.
{
    "sku": {
        "item_code": "0233",
        "dimension_group2": "0",
        "barcode_type": "EAN13",
        "dimension_level1": "5",
        "dimension_level2": "1",
        "moved": true
    }
}
moved SKU, Barcodes in Documents
If moved is true this means that SKU is referenced in documents.
Deleting barcodes or sku that are referenced in documents is a critical operation. It disrupts the alignment between products, SKUs/barcodes, documents, inventory, and warehouse movements.
Impact on Documents and Inventory: After removal, affected documents and inventory will still reflect the removed barcode. This discrepancy is further complicated if the barcode is later assigned to another product.
Warehouse Movements: Historical warehouse movements will show operations related to both the previous and current product assignments for the barcode.

Alternate Flows#

1.
Barcode Not Found (404)
If the specified barcode is not found, the API returns a 404 error with a message indicating that the barcode is unrecognized.
Response:
{
  "message": "Barcode not found: {BARCODE}"
}

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

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 GET '/api/v1/products/barcodes/200001378739' \
--header 'Authorization: Bearer <token>'

Responses

🟢200Success
application/json
Body

Example
{
    "sku": {
        "item_code": "CAMICIA_ROSSA",
        "dimension_group1": "1",
        "dimension_group2": "1",
        "barcode_type": "EAN13",
        "dimension_level1": "1",
        "dimension_level2": "Y4",
        "moved": false
    }
}
🟢200Success - ARTICOLO_GENERICO
🟠401Authentication failed
🟠403Operation not allowed
🟠422Unique constraint error
Modified at 2025-02-19 11:06:35
Previous
Delete active dimensions
Next
Generate missing barcodes
Built with