deleteLoyaltyMemberships
Remove loyalty memberships by specifying their unique identifiers. Ideal for managing and updating customer profiles within the Mews hospitality platform API.
Instructions
Deletes loyalty memberships
Input Schema
Name | Required | Description | Default |
---|---|---|---|
LoyaltyMembershipIds | Yes | Unique identifier of the loyalty memberships to be deleted |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"LoyaltyMembershipIds": {
"description": "Unique identifier of the loyalty memberships to be deleted",
"items": {
"type": "string"
},
"maxItems": 1000,
"type": "array"
}
},
"required": [
"LoyaltyMembershipIds"
],
"type": "object"
}