Estimates - Delete Estimate
DELETE yourdomain.com/api/estimates/:id
Header
json
| Field | Type | Description | 
|---|---|---|
| Authorization | String | 
 Basic Access Authentication token.  | 
Success 200
json
| Field | Type | Description | 
|---|---|---|
| status | Boolean | 
 Request status.  | 
| message | String | 
 Estimates Deleted Successfully  | 
Error 4xx
json
| Name | Type | Description | 
|---|---|---|
| status | Boolean | 
 Request status.  | 
| message | String | 
 Estimate Delete Fail  | 
HTTP/1.1 200 OK
{
  "status": true,
  "message": "Estimate Deleted Successfully"
}
HTTP/1.1 404 Not Found
{
  "status": false,
  "message": "Estimate Delete Fail"
}