deleteCustomers
Remove multiple customers from the Mews hospitality platform by specifying their IDs, supporting bulk deletion of up to 1000 entries at once.
Instructions
Deletes specified customers
Input Schema
Name | Required | Description | Default |
---|---|---|---|
CustomerIds | Yes | Array of customer IDs to delete |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"CustomerIds": {
"description": "Array of customer IDs to delete",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
}
},
"required": [
"CustomerIds"
],
"type": "object"
}