(DELETE) Delete customers

Soft-delete existing customers by ID.

Endpoint

DELETE /api/customers

Soft-delete one or more customers by UUID. Deleted customers are excluded from GET /api/customers and future direct updates.

Endpoint text
DELETE /api/customers

Authentication

Requires authentication with an API key that has the customersWrite scope.

Request Body

The request body must be an array of customer UUIDs.

Code json
[
	"550e8400-e29b-41d4-a716-446655440000",
	"550e8400-e29b-41d4-a716-446655440001"
]