{ "opencollection": "1.0.0", "info": { "name": "Qase TestOps API v1 cases API", "version": "1.0" }, "request": { "auth": { "type": "apikey", "key": "Token", "value": "{{Token}}", "placement": "header" } }, "items": [ { "info": { "name": "cases", "type": "folder" }, "items": [ { "info": { "name": "Get all test cases", "type": "http" }, "http": { "method": "GET", "url": "https://api.qase.io/v1/case/:code", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." }, { "name": "suite_id", "value": "", "type": "query" }, { "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 test cases stored in the selected project." }, { "info": { "name": "Create a new test case", "type": "http" }, "http": { "method": "POST", "url": "https://api.qase.io/v1/case/:code", "params": [ { "name": "code", "value": "", "type": "path", "description": "Code of the project, uppercase, 2-10 characters." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Creates a test case in the selected project." }, { "info": { "name": "Get a specific test case", "type": "http" }, "http": { "method": "GET", "url": "https://api.qase.io/v1/case/: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 test case by id." }, { "info": { "name": "Update a specific test case", "type": "http" }, "http": { "method": "PATCH", "url": "https://api.qase.io/v1/case/: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." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates a specific test case by id." }, { "info": { "name": "Delete a specific test case", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.qase.io/v1/case/: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 test case by id." } ] } ], "bundled": true }