mergeCustomers
Merge two customer profiles in the Mews hospitality platform by transferring data from a source customer ID to a target customer ID.
Instructions
Merges two customers together
Input Schema
Name | Required | Description | Default |
---|---|---|---|
SourceCustomerId | Yes | ID of customer to merge from | |
TargetCustomerId | Yes | ID of customer to merge into |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"SourceCustomerId": {
"description": "ID of customer to merge from",
"type": "string"
},
"TargetCustomerId": {
"description": "ID of customer to merge into",
"type": "string"
}
},
"required": [
"SourceCustomerId",
"TargetCustomerId"
],
"type": "object"
}