Creating a Run with 'plan_id' field while including specific cases from that plan doesn't work properly, as the run created has all of the cases from that plan, instead of having only specified cases. This is an API issue, as the same scenario works fine when done via UI. --------------------------------------------- Endpoint: https://api.qase.io/v1/run/{code} --------------------------------------------- Body: { "cases": [ 609, 610 ], "plan_id": 5, "configurations": [ 7 ], "title": "Test Title", "description": "Test description", "include_all_cases": false } --------------------------------------------- Response: { "status": true, "result": { "id": 62 } } ---------------------------------------------