{ "opencollection": "1.0.0", "info": { "name": "Screendoor Files Projects API", "version": "1" }, "request": { "auth": { "type": "apikey", "key": "api_key", "value": "{{api_key}}", "placement": "query" } }, "items": [ { "info": { "name": "Projects", "type": "folder" }, "items": [ { "info": { "name": "List projects", "type": "http" }, "http": { "method": "GET", "url": "https://screendoor.dobt.co/api/sites/:site_id/projects", "params": [ { "name": "site_id", "value": "", "type": "path", "description": "The id of the site." }, { "name": "page", "value": "", "type": "query", "description": "The page of results to return." }, { "name": "per_page", "value": "", "type": "query", "description": "The number of records per page (max 100)." } ] }, "docs": "Returns a paginated list of the projects belonging to a site." }, { "info": { "name": "Create a project", "type": "http" }, "http": { "method": "POST", "url": "https://screendoor.dobt.co/api/sites/:site_id/projects", "params": [ { "name": "site_id", "value": "", "type": "path", "description": "The id of the site." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new project within the site." }, { "info": { "name": "Retrieve a project", "type": "http" }, "http": { "method": "GET", "url": "https://screendoor.dobt.co/api/sites/:site_id/projects/:project_id", "params": [ { "name": "site_id", "value": "", "type": "path", "description": "The id of the site." }, { "name": "project_id", "value": "", "type": "path", "description": "The id of the project." } ] }, "docs": "Returns a single project by id." }, { "info": { "name": "Update a project", "type": "http" }, "http": { "method": "PUT", "url": "https://screendoor.dobt.co/api/sites/:site_id/projects/:project_id", "params": [ { "name": "site_id", "value": "", "type": "path", "description": "The id of the site." }, { "name": "project_id", "value": "", "type": "path", "description": "The id of the project." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the attributes of an existing project." }, { "info": { "name": "Delete a project", "type": "http" }, "http": { "method": "DELETE", "url": "https://screendoor.dobt.co/api/sites/:site_id/projects/:project_id", "params": [ { "name": "site_id", "value": "", "type": "path", "description": "The id of the site." }, { "name": "project_id", "value": "", "type": "path", "description": "The id of the project." } ] }, "docs": "Permanently deletes a project." } ] } ], "bundled": true }