meta { name: Delete Price Report type: http seq: 5 } delete { url: {{baseUrl}}/price_reports/{{priceReportId}} } headers { Authorization: Bearer {{authToken}} } assert { res.status: equals 204 } tests { test("Delete price report returns 204 no content", function() { expect(res.getStatus()).to.equal(204); }); }