{ "opencollection": "1.0.0", "info": { "name": "Optimizely Campaign REST Assets Catalogs API", "version": "1.0" }, "request": { "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "items": [ { "info": { "name": "Catalogs", "type": "folder" }, "items": [ { "info": { "name": "List catalogs", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/commerce/catalogs" }, "docs": "Returns a list of all product catalogs in the commerce system." }, { "info": { "name": "Create a catalog", "type": "http" }, "http": { "method": "POST", "url": "https://api.campaign.episerver.net/rest/commerce/catalogs", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new product catalog." }, { "info": { "name": "Get a catalog", "type": "http" }, "http": { "method": "GET", "url": "https://api.campaign.episerver.net/rest/commerce/catalogs/:catalogName", "params": [ { "name": "catalogName", "value": "", "type": "path", "description": "The name of the catalog" } ] }, "docs": "Retrieves the details of a specific catalog by its name." }, { "info": { "name": "Update a catalog", "type": "http" }, "http": { "method": "PUT", "url": "https://api.campaign.episerver.net/rest/commerce/catalogs/:catalogName", "params": [ { "name": "catalogName", "value": "", "type": "path", "description": "The name of the catalog" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the specified catalog with the provided fields." }, { "info": { "name": "Delete a catalog", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.campaign.episerver.net/rest/commerce/catalogs/:catalogName", "params": [ { "name": "catalogName", "value": "", "type": "path", "description": "The name of the catalog" } ] }, "docs": "Permanently deletes the specified catalog and its contents." } ] } ], "bundled": true }