{ "opencollection": "1.0.0", "info": { "name": "Fourthwall Collections API", "version": "v1" }, "items": [ { "info": { "name": "Collections", "type": "folder" }, "items": [ { "info": { "name": "Get all collections", "type": "http" }, "http": { "method": "GET", "url": "https://storefront-api.fourthwall.com/open-api/v1.0/collections", "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get all collections" }, { "info": { "name": "Create a new collection", "type": "http" }, "http": { "method": "POST", "url": "https://storefront-api.fourthwall.com/open-api/v1.0/collections", "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Create a new collection" }, { "info": { "name": "Get collection by ID or slug", "type": "http" }, "http": { "method": "GET", "url": "https://storefront-api.fourthwall.com/open-api/v1.0/collections/:collectionIdOrSlug", "params": [ { "name": "collectionIdOrSlug", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get collection by ID or slug" }, { "info": { "name": "Get products in a collection", "type": "http" }, "http": { "method": "GET", "url": "https://storefront-api.fourthwall.com/open-api/v1.0/collections/:collectionId/products", "params": [ { "name": "collectionId", "value": "", "type": "path" } ], "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Get products in a collection" }, { "info": { "name": "Set collection products", "type": "http" }, "http": { "method": "PUT", "url": "https://storefront-api.fourthwall.com/open-api/v1.0/collections/:collectionId/products", "params": [ { "name": "collectionId", "value": "", "type": "path" } ], "body": { "type": "json", "data": "{}" }, "auth": { "type": "basic", "username": "{{username}}", "password": "{{password}}" } }, "docs": "Set collection products" } ] } ], "bundled": true }