{ "opencollection": "1.0.0", "info": { "name": "Tachapps Production Data Projects API", "version": "v1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.tachyus.com/api/v1/projects", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Max results per page (default: 50, max: 200)" }, { "name": "cursor", "value": "", "type": "query", "description": "Pagination cursor from previous response" } ] }, "docs": "Returns a paginated list of projects the authenticated user has access to." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://{organization}.tachyus.com/api/v1/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Create a project" }, { "info": { "name": "Retrieve a project", "type": "http" }, "http": { "method": "GET", "url": "https://{organization}.tachyus.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID" } ] }, "docs": "Retrieve a project" }, { "info": { "name": "Update project metadata", "type": "http" }, "http": { "method": "PATCH", "url": "https://{organization}.tachyus.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Partially update project metadata; only included fields are modified." }, { "info": { "name": "Delete a project", "type": "http" }, "http": { "method": "DELETE", "url": "https://{organization}.tachyus.com/api/v1/projects/:id", "params": [ { "name": "id", "value": "", "type": "path", "description": "Project ID" } ] }, "docs": "Deleting a project permanently removes all associated wells, production data, dashboards, and surfaces." } ] } ], "bundled": true }