{ "opencollection": "1.0.0", "info": { "name": "Thinkific Admin Bundles Categories API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Categories", "type": "folder" }, "items": [ { "info": { "name": "Get Collections", "type": "http" }, "http": { "method": "GET", "url": "https://api.thinkific.com/api/public/v1/collections", "params": [ { "name": "page", "value": "", "type": "query", "description": "The page within the collection to fetch" }, { "name": "limit", "value": "", "type": "query", "description": "The number of items to be returned" } ] }, "docs": "Retrieves a list of Collections **NOTE: This endpoint will be renamed to /categories in future API versions.**" }, { "info": { "name": "Create a new Category", "type": "http" }, "http": { "method": "POST", "url": "https://api.thinkific.com/api/public/v1/collections", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new Category" }, { "info": { "name": "Get Collections by Id", "type": "http" }, "http": { "method": "GET", "url": "https://api.thinkific.com/api/public/v1/collections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Category in the form of an integer" } ] }, "docs": "Retrieves a Collection" }, { "info": { "name": "Update collection by ID", "type": "http" }, "http": { "method": "PUT", "url": "https://api.thinkific.com/api/public/v1/collections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Category in the form of an integer" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the Category identified by the provided id" }, { "info": { "name": "Delete collection by ID", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.thinkific.com/api/public/v1/collections/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Category in the form of an integer" } ] }, "docs": "Deletes the Category identified by the provided id" }, { "info": { "name": "Get products by Collections id", "type": "http" }, "http": { "method": "GET", "url": "https://api.thinkific.com/api/public/v1/collections/:id/products", "params": [ { "name": "id", "value": "", "type": "path", "description": "ID of the Chapter in the form of an integer" }, { "name": "page", "value": "", "type": "query", "description": "The page within the collection to fetch" }, { "name": "limit", "value": "", "type": "query", "description": "The number of items to be returned" } ] }, "docs": "Retrieves Products within the Category identified by the provided id" } ] } ], "bundled": true }