{ "opencollection": "1.0.0", "info": { "name": "Coalesce Environments Projects API", "version": "1" }, "request": { "auth": { "type": "bearer", "token": "{{bearerToken}}" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List Projects", "type": "http" }, "http": { "method": "GET", "url": "https://app.coalescesoftware.io/api/v1/projects", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return per page" }, { "name": "orderBy", "value": "", "type": "query", "description": "Field name to sort results by" }, { "name": "orderByDirection", "value": "", "type": "query", "description": "Sort direction" }, { "name": "startingFrom", "value": "", "type": "query", "description": "Cursor value from the previous response's `next` field for pagination" } ] }, "docs": "Returns a paginated list of projects in the organization." }, { "info": { "name": "Create Project", "type": "http" }, "http": { "method": "POST", "url": "https://app.coalescesoftware.io/api/v1/projects", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new project in the organization." }, { "info": { "name": "Get Project", "type": "http" }, "http": { "method": "GET", "url": "https://app.coalescesoftware.io/api/v1/projects/:projectID", "params": [ { "name": "projectID", "value": "", "type": "path", "description": "Unique identifier of the project" } ] }, "docs": "Returns details for a specific project." }, { "info": { "name": "Update Project", "type": "http" }, "http": { "method": "PUT", "url": "https://app.coalescesoftware.io/api/v1/projects/:projectID", "params": [ { "name": "projectID", "value": "", "type": "path", "description": "Unique identifier of the project" } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a specific project." }, { "info": { "name": "Delete Project", "type": "http" }, "http": { "method": "DELETE", "url": "https://app.coalescesoftware.io/api/v1/projects/:projectID", "params": [ { "name": "projectID", "value": "", "type": "path", "description": "Unique identifier of the project" } ] }, "docs": "Deletes a specific project." } ] } ], "bundled": true }