Interface MergeCustomerPayload

Payload for merging customers

interface MergeCustomerPayload {
    newCustomerId: string;
    newExternalCustomerId: string;
    newSalesChannelId: string;
    oldCustomerId: string;
    oldExternalCustomerId: string;
    oldSalesChannelId: string;
}

Properties

newCustomerId: string

The new customer ID

newExternalCustomerId: string

The new customer ID

newSalesChannelId: string

The new sales channel ID

oldCustomerId: string

The old customer ID

oldExternalCustomerId: string

The old external customer ID

oldSalesChannelId: string

The old sales channel ID