Delete Estimate Comment

DELETE/api/estimate-comments/{id}

Headers

FieldTypeDescription
authtoken String Authentication token, generated from admin area

Parameters

FieldTypeDescription
id Number Estimate comment unique ID
curl -X DELETE "https://yoursite.com/api/estimate-comments/123" \
  -H "authtoken: YOUR_API_TOKEN"

Success-Response:

HTTP/1.1 200 OK
{
  "status": 200,
  "messages": {"success": "Comment deleted successfully."}
}

Error-Response:

HTTP/1.1 400 Bad Request
{ "status": false, "messages": { "error": "Failed to delete comment." } }
MethodDELETE
Path/api/estimate-comments/{id}
GroupEstimate Comments
Sincev1.0.0
Defined inRestApi/Controllers/EstimateCommentsController.php