{ "opencollection": "1.0.0", "info": { "name": "Sideko API Projects API", "version": "1.1" }, "request": { "auth": { "type": "apikey", "key": "x-sideko-key", "value": "{{x-sideko-key}}", "placement": "header" } }, "items": [ { "info": { "name": "API Projects", "type": "folder" }, "items": [ { "info": { "name": "List API Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.sideko.dev/v1/api-projects", "params": [ { "name": "page", "value": "", "type": "query", "description": "Page number for pagination" }, { "name": "limit", "value": "", "type": "query", "description": "Number of results per page" } ] }, "docs": "Returns a paginated list of all API projects in the authenticated organization. Each project contains one or more API versions defined by OpenAPI specifications." }, { "info": { "name": "Create API Project", "type": "http" }, "http": { "method": "POST", "url": "https://api.sideko.dev/v1/api-projects", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new API project in the authenticated organization. The project will hold OpenAPI specifications and serve as the container for generated SDKs, documentation, and mock servers." }, { "info": { "name": "Get API Project", "type": "http" }, "http": { "method": "GET", "url": "https://api.sideko.dev/v1/api-projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Unique identifier of the API project" } ] }, "docs": "Returns the details of a specific API project by its unique identifier, including project metadata, versions, and associated tooling." }, { "info": { "name": "Update API Project", "type": "http" }, "http": { "method": "PUT", "url": "https://api.sideko.dev/v1/api-projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Unique identifier of the API project" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the metadata of an existing API project, including the project name, description, and configuration settings." }, { "info": { "name": "Delete API Project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.sideko.dev/v1/api-projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Unique identifier of the API project" } ] }, "docs": "Permanently deletes an API project and all associated versions, generated SDKs, documentation, and mock server configurations." } ] } ], "bundled": true }