{ "opencollection": "1.0.0", "info": { "name": "Sapien Developer Datapoints Projects API", "version": "1.0.0" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "/developer/v1/projects", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of projects to return (1-100)." }, { "name": "cursor", "value": "", "type": "query", "description": "Opaque pagination cursor from a previous response's nextCursor. Omit for the first page." } ] }, "docs": "List the projects in the API key's organization, newest first. Cursor-paginated: pass the previous response's nextCursor as ?cursor= to fetch the next page." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "/developer/v1/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Create an active project from a JSON spec. The project goes live immediately (spec locked), is attributed to the user who created the API key, and is created in that user's organization." }, { "info": { "name": "Get a project", "type": "http" }, "http": { "method": "GET", "url": "/developer/v1/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Project ID." } ] }, "docs": "Fetch a single project in the API key's organization by ID." }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PUT", "url": "/developer/v1/projects/:projectId", "params": [ { "name": "projectId", "value": "", "type": "path", "description": "Project ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Update a project's editable fields. Only the supplied fields change: name and description are mutable metadata; paused toggles whether new validation claims are issued. The spec, status, and other fields are immutable once the project is live." } ] } ], "bundled": true }