intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 372 B
TypeScript
/**
* @example
* {
* from: "6762f0d51bb69f9f2193bb7f",
* into: "6762f0d51bb69f9f2193bb80"
* }
*/
export interface MergeContactsRequest {
/** The unique identifier for the contact to merge away from. Must be a lead. */
from?: string;
/** The unique identifier for the contact to merge into. Must be a user. */
into?: string;
}