As a product owner, I should be able to delete a label, so that I can remove old or inconsistent labels.
Acceptance Criteria
GIVEN a product owner is deleting a label in the desktop app
WHEN the app hits the labels/:id endpoint with a valid DELETE request, containing the path parameter:
:id, the unique id of the label being removed.
THEN the app should receive a status 200AND in the response, the following information should be returned:
Summary
As a
product owner
, I should be able to delete a label, so that I can remove old or inconsistent labels.Acceptance Criteria
GIVEN a
product owner
is deleting a label in the desktop app WHEN the app hits thelabels/:id
endpoint with a valid DELETE request, containing the path parameter::id
, the unique id of the label being removed.THEN the app should receive a status
200
AND in the response, the following information should be returned:Sample Request/Sample Response
Resources
Dev Notes
{Some complementary notes if necessary}
Testing Notes
Scenario 1: DELETE request is successful:
/labels
endpoint.id
returned from the POST, make a DELETE request to/labels/:id
endpoint./labels/:id
endpoint should return a 404 not found status code.Scenario 2: DELETE request is forbidden:
/labels/:id
endpoint using acontractor
account token.