Delete Customer
Delete one or more existing customers.
Endpoint
DELETE /api/customers
Request
DELETE https://app.getmanageit.io/api/customers
Authorization: Bearer YOUR_API_KEY
Content-Type: application/json
Request Body
{
"customers": [310, 311, 312]
}
Request Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
customers | array | Yes | Array of customer IDs to delete |
Response
Response documentation will be added when endpoint details are provided.
Status Codes
| Code | Description |
|---|---|
| 200 | Success |
| 204 | No Content |
| 401 | Unauthorized |
| 404 | Customer not found |
| 500 | Server Error |
Sample JSON Payload
{
"customers": [310, 311, 312]
}