{ "opencollection": "1.0.0", "info": { "name": "SimScale REST Geometry Projects API", "version": "0.0.0" }, "request": { "auth": { "type": "apikey", "key": "X-API-KEY", "value": "{{X-API-KEY}}", "placement": "header" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List Projects", "type": "http" }, "http": { "method": "GET", "url": "https://api.simscale.com/v0/projects", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Number of projects to return" }, { "name": "page", "value": "", "type": "query", "description": "Page number (zero-indexed)" } ] }, "docs": "Retrieve a list of all simulation projects for the authenticated user." }, { "info": { "name": "Create Project", "type": "http" }, "http": { "method": "POST", "url": "https://api.simscale.com/v0/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Create a new simulation project." }, { "info": { "name": "Get Project", "type": "http" }, "http": { "method": "GET", "url": "https://api.simscale.com/v0/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Unique project identifier" } ] }, "docs": "Retrieve details of a specific simulation project." }, { "info": { "name": "Update Project", "type": "http" }, "http": { "method": "PUT", "url": "https://api.simscale.com/v0/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Unique project identifier" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update the name or description of an existing project." }, { "info": { "name": "Delete Project", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.simscale.com/v0/projects/:project_id", "params": [ { "name": "project_id", "value": "", "type": "path", "description": "Unique project identifier" } ] }, "docs": "Delete a simulation project and all its associated data." } ] } ], "bundled": true }