v1
latestOpenAPI 3.0.32026-07-24614422630.2 KBProduct Catalog
Get Product Catalog
Retrieves paginated information about products and bundles in the catalog, including attributes, assignments, and pricing details.
get/api/v1/version/{version_id}/products_catalog
Path parameters
version_idstring required
The unique identifier of the Version.
Query parameters
skustring[]
One or more product SKUs to filter the result. Can be used multiple times (e.g., ?sku=SKU001&sku=SKU002).
If none of the provided SKUs match, the service will return an empty list.
In case you inform a list of SKUs, ‘limit’ and ‘offset’ parameters on request will be ignored if provided.
offsetinteger
The number of products to skip for pagination.
limitinteger
The maximum number of products to return.
Response
Success.
Example response
{
"products": [
{
"product_pricing": {
"pricing_rules": [
{
"volume_discount": {
"Quantity": "VolD1",
"Duration": "VolD2"
}
}
]
}
}
],
"bundles": [
{
"product_pricing": {
"pricing_rules": [
{
"volume_discount": {
"Quantity": "VolD1",
"Duration": "VolD2"
}
}
]
}
}
]
}