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