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