Detail of product set

GET /product-sets/id/{id}

This endpoint is used to fetch product set by ID

Get all information about product sets by ISS ID

Path parameters

  • productSetId integer(int32) Required

    ID of product set

Responses

  • 200 application/json

    Detail of product set for your account

    Hide response attributes Show response attributes object
    • id integer(int64)
    • createdAt string(date-time)
    • updatedAt string(date-time)
    • title string
    • language string
    • currency string

      ISO currency code

    • isActive boolean

      Default value is false.

    • source string
    • pairingStrategy string
    • defaultBrand string
    • strategies array[object]
      Hide strategies attributes Show strategies attributes object
      • pricing array[object]
        Hide pricing attributes Show pricing attributes object
        • sellingMargin number(float)
        • automaticMarkup number(float)
      • stock array[object]
        Hide stock attributes Show stock attributes object
        • defaultStockValue number(float)
        • propagateDeliveryDelay boolean

          Default value is true.

  • 404

    Product is not found

GET /product-sets/id/{id}
curl \
 --request GET 'api.services.omnicado.com/api/v2/product-sets/id/{id}' \
 --header "X-OMNICADO-TOKEN: $API_KEY"
Response examples (200)
{
  "id": 42,
  "createdAt": "2025-05-04T09:42:00Z",
  "updatedAt": "2025-05-04T09:42:00Z",
  "title": "Products for Amazon",
  "language": "cs_CZ",
  "currency": "CZK",
  "isActive": false,
  "source": "api",
  "pairingStrategy": "remoteId",
  "defaultBrand": "OMNICADO",
  "strategies": [
    {
      "pricing": [
        {
          "sellingMargin": 42.0,
          "automaticMarkup": 42.0
        }
      ],
      "stock": [
        {
          "defaultStockValue": 42.0,
          "propagateDeliveryDelay": true
        }
      ]
    }
  ]
}