Requirements should follow same philosophy as defects.
Use this endpoint when you need to:
curl -X DELETE https://api.hawzu.com/api/v1/workspace/{workspaceId}/project/{projectId}/delete_requirement \
-H "Authorization: Bearer YOUR_API_TOKEN"| Parameter | Required | Description |
|---|---|---|
workspaceId | ✅ Yes | The ID of the workspace to delete the requirement for |
projectId | ✅ Yes | The ID of the project to delete the requirement for |
requirementId | ✅ Yes | The ID of the requirement to delete |
| Header | Required | Description |
|---|---|---|
Authorization | ✅ Yes | Bearer <API_TOKEN> |
{
"data": {
"id": "req_101",
"project_id": "proj_101",
"title": "User login functionality",
"type": "FUNCTIONAL",
"status": "ACTIVE",
"labels": ["authentication", "core"],
"testcase_codes": ["TC_LOGIN_001", "TC_LOGIN_002"],
"created_at": "2026-02-01T00:00:00Z",
"updated_at": "2026-02-01T00:00:00Z"
}
}