deleteLoyaltyTiers
Remove specific loyalty tiers from Mews hospitality platform by providing their unique identifiers in the required array. Simplifies tier management and system configuration.
Instructions
Deletes loyalty tiers
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| LoyaltyTierIds | Yes | Unique identifier of the loyalty tiers to be deleted |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"LoyaltyTierIds": {
"description": "Unique identifier of the loyalty tiers to be deleted",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
}
},
"required": [
"LoyaltyTierIds"
],
"type": "object"
}