{ "opencollection": "1.0.0", "info": { "name": "Qase TestOps API v1 cases defects API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Token", "value": "{{Token}}", "placement": "header" } }, "items": [ { "info": { "name": "defects", "type": "folder" }, "items": [ { "info": { "name": "Get all defects", "type": "http" }, "http": { "method": "GET", "url": "https://api.qase.io/v1/defect/:code", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "status", "value": "", "type": "query", "description": "Possible values: open, resolved, in_progress, invalid." }, { "name": "limit", "value": "", "type": "query", "description": "A number of entities in result set. Default is 10, max is 100." }, { "name": "offset", "value": "", "type": "query", "description": "How many entities should be skipped. Default is 0." } ] }, "docs": "Retrieves all defects stored in the selected project." }, { "info": { "name": "Get a specific defect", "type": "http" }, "http": { "method": "GET", "url": "https://api.qase.io/v1/defect/:code/:id", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "id", "value": "", "type": "path", "description": "Identifier of the entity." } ] }, "docs": "Retrieves a specific defect by id." }, { "info": { "name": "Delete a specific defect", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.qase.io/v1/defect/:code/:id", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "id", "value": "", "type": "path", "description": "Identifier of the entity." } ] }, "docs": "Deletes a specific defect by id." }, { "info": { "name": "Resolve a specific defect", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.qase.io/v1/defect/:code/resolve/:id", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "id", "value": "", "type": "path", "description": "Identifier of the entity." } ] }, "docs": "Marks a specific defect as resolved." }, { "info": { "name": "Update a defect status", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.qase.io/v1/defect/:code/status/:id", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "id", "value": "", "type": "path", "description": "Identifier of the entity." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates the status of a specific defect (open or in progress)." } ] } ], "bundled": true }