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