4WS Suite
Home
API Reference
  • Data mangement API
  • Documents API
Home
API Reference
  • Data mangement API
  • Documents API
Fourwayshop
  1. Supplier
  • 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 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
        GET
      • Insert item supplier
        POST
      • Delete item supplier
        DELETE
      • Update item supplier
        PATCH
    • 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. Supplier

Get Item suppliers

GET
/api/v1/products/{ITEM_CODE}/suppliers
Last modified:2025-04-08 12:06:32

Retrieving Items Supplier#

The external system needs to retrieve items supplier details that are registered in the 4ws.trade system.
It can either fetch all suppliers in a paginated format or query details of a specific supplier by providing the supplier_code. The system will return the relevant information in a structured format.
The API supports pagination to navigate through large lists of items supplier.
Paginated Responses
The service is paginated to handle large sets of data efficiently.
For detailed information on how to handle pagination, refer to our Paginated Responses

Actors#

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

Preconditions#

The external system must have the necessary permissions and access to the service, please refer to Authentication.
Pagination parameters cursor and nextCursor must be correctly configured in the request.

Main Success Scenario#

If the request is successful, the system will return an HTTP 200 response with the paginated list of items supplier and a nextCursor indicating whether there are more items supplier to retrieve. If nextCursor is setted, the external system must be call again, this service, setting cursor as nextCursor value.
Response Example
Retrieve all Suppliers#
You can retrieve all product suppliers by querying this service. In this case, only the supplier code is not setted.
The response will include all suppliers product.
Retrieve a specific Supplier#
If for example you want to retrieve only the supplier with code 1232.
The response will include only the supplier specified on SUPPLIER_CODE parameter.

Alternate Flows#

Authentication Error: If the client does not provide valid credentials, an error response is returned.
Authentication Error Example
Invalid Supplier Code: If the provided SUPPLIER_CODE does not match any supplier in the system, the response will be:
Invalid Supplier Code Error Example
Empty Result: If no collections exist, the suppliers array will be empty.
Cursor & PageSize Used Together: Cursor and PageSize parameters in the request: If you specify a Cursor you cannot specify the page size. This information will already be contained within the cursor.
Error Example
Pagination Error: If invalid cursor parameters are provided, an error response is returned.
Rate Limiting: If the API rate limits are exceeded, the client must respect the retry interval indicated in the response headers Rate Limits.

Sequence Diagram#

Case 1: Retrieving All Suppliers Product#
Case 2: Retrieving a Specific Supplier#
Best Practices
Please refer to Best Practices for Error Handling in External System for best practices on implementation.

Code Examples in Node.js#

Case 1: Retrieving All Suppliers#
Case 2: Retrieving a Specific Supplier#

Request

Path Params

Query 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/ITEM0001/suppliers?SUPPLIER_CODE=&page=0&pageSize=100&cursor'

Responses

🟢200GET Success
application/json
Body

Example
{
    "item_code": "consequat",
    "suppliers": [
        {
            "supplier_code": "sed amet",
            "main": false
        }
    ],
    "nextCursor": "eyJwYWdlIjoyLCJwYWdlU2l6ZSI6MTB2"
}
🟠422Invalid pageSize
🟠401Authentication failed
🟠403Operation not allowed
🟠404Product not found with item_code
Modified at 2025-04-08 12:06:32
Previous
Delete image
Next
Insert item supplier
Built with