{ "opencollection": "1.0.0", "info": { "name": "SAP Commerce Cloud Admin Addresses Products API", "version": "1.0" }, "request": { "auth": { "type": "oauth2", "flow": "client_credentials", "accessTokenUrl": "https://{tenant}.{region}.commercecloud.sap/authorizationserver/oauth/token", "credentials": { "clientId": "{{clientId}}", "clientSecret": "{{clientSecret}}" } } }, "items": [ { "info": { "name": "Products", "type": "folder" }, "items": [ { "info": { "name": "SAP Commerce Cloud Search products", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products", "params": [ { "name": "query", "value": "", "type": "query", "description": "Free-text search query" }, { "name": "currentPage", "value": "", "type": "query", "description": "Current page number (zero-based)" }, { "name": "pageSize", "value": "", "type": "query", "description": "Number of results per page" }, { "name": "sort", "value": "", "type": "query", "description": "Sort criteria (e.g., relevance, topRated, name-asc, price-asc)" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Search for products using free-text search, category filtering, and faceted navigation. Supports pagination, sorting, and spell checking." }, { "info": { "name": "SAP Commerce Cloud Get product details", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/:productCode", "params": [ { "name": "productCode", "value": "", "type": "path", "description": "Product code" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Retrieve detailed information about a specific product including descriptions, images, prices, reviews, and classifications." }, { "info": { "name": "SAP Commerce Cloud Get product reviews", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/:productCode/reviews", "params": [ { "name": "productCode", "value": "", "type": "path", "description": "Product code" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Retrieve customer reviews for a specific product." }, { "info": { "name": "SAP Commerce Cloud Create a product review", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.{region}.commercecloud.sap/products/:productCode/reviews", "params": [ { "name": "productCode", "value": "", "type": "path", "description": "Product code" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Submit a new customer review for a product." }, { "info": { "name": "SAP Commerce Cloud Get product stock levels", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/:productCode/stock", "params": [ { "name": "productCode", "value": "", "type": "path", "description": "Product code" }, { "name": "location", "value": "", "type": "query", "description": "Location for store stock lookup" } ] }, "docs": "Retrieve stock level information for a product across stores." }, { "info": { "name": "SAP Commerce Cloud List products", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/InboundProduct/Products", "params": [ { "name": "$filter", "value": "", "type": "query", "description": "OData filter expression" }, { "name": "$select", "value": "", "type": "query", "description": "Comma-separated list of properties to return" }, { "name": "$expand", "value": "", "type": "query", "description": "Comma-separated list of navigation properties to expand" }, { "name": "$top", "value": "", "type": "query", "description": "Maximum number of results to return" }, { "name": "$skip", "value": "", "type": "query", "description": "Number of results to skip" }, { "name": "$orderby", "value": "", "type": "query", "description": "Property name and direction for sorting" } ] }, "docs": "Retrieve products through the inbound product integration object. Supports OData query options for filtering, sorting, and pagination." }, { "info": { "name": "SAP Commerce Cloud Create or update a product", "type": "http" }, "http": { "method": "POST", "url": "https://{tenant}.{region}.commercecloud.sap/InboundProduct/Products", "body": { "type": "json", "data": "{}" } }, "docs": "Create or update product data through the inbound integration layer." }, { "info": { "name": "SAP Commerce Cloud Get product by integration key", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/InboundProduct/Products(':integrationKey')", "params": [ { "name": "integrationKey", "value": "", "type": "path", "description": "Integration key (composite key identifying the entity)" }, { "name": "$select", "value": "", "type": "query", "description": "Comma-separated list of properties to return" }, { "name": "$expand", "value": "", "type": "query", "description": "Comma-separated list of navigation properties to expand" } ] }, "docs": "Retrieve a specific product by its integration key." }, { "info": { "name": "SAP Commerce Cloud Update a product", "type": "http" }, "http": { "method": "PATCH", "url": "https://{tenant}.{region}.commercecloud.sap/InboundProduct/Products(':integrationKey')", "params": [ { "name": "integrationKey", "value": "", "type": "path", "description": "Integration key (composite key identifying the entity)" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update product data through the integration layer." }, { "info": { "name": "SAP Commerce Cloud Delete a product", "type": "http" }, "http": { "method": "DELETE", "url": "https://{tenant}.{region}.commercecloud.sap/InboundProduct/Products(':integrationKey')", "params": [ { "name": "integrationKey", "value": "", "type": "path", "description": "Integration key (composite key identifying the entity)" } ] }, "docs": "Delete a product through the integration layer." }, { "info": { "name": "SAP Commerce Cloud Get product references", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/:productCode/references", "params": [ { "name": "productCode", "value": "", "type": "path", "description": "Product code" }, { "name": "referenceType", "value": "", "type": "query", "description": "Type of reference to filter by" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Retrieve product references such as similar products, accessories, cross-sells, and up-sells." }, { "info": { "name": "SAP Commerce Cloud Get product search suggestions", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/suggestions", "params": [ { "name": "term", "value": "", "type": "query", "description": "Partial search term" }, { "name": "max", "value": "", "type": "query", "description": "Maximum number of suggestions" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Retrieve autocomplete suggestions based on a partial search term." }, { "info": { "name": "SAP Commerce Cloud Get recently updated products", "type": "http" }, "http": { "method": "GET", "url": "https://{tenant}.{region}.commercecloud.sap/products/expressupdate", "params": [ { "name": "timestamp", "value": "", "type": "query", "description": "ISO 8601 timestamp for change detection" }, { "name": "catalog", "value": "", "type": "query", "description": "Catalog identifier to filter by" }, { "name": "fields", "value": "", "type": "query", "description": "Response field configuration level. Use BASIC, DEFAULT, or FULL to control the amount of data returned." } ] }, "docs": "Retrieve a list of products that have been modified since a given timestamp, useful for content synchronization." } ] } ], "bundled": true }