intercom-client
Version:
Official Node bindings to the Intercom API
11 lines (10 loc) • 476 B
TypeScript
export interface CustomChannelNotificationResponse {
/** The external conversation ID provided in the notification request */
external_conversation_id: string;
/** The Intercom conversation ID mapped to the external conversation ID */
conversation_id: string;
/** The external contact ID provided in the notification request */
external_contact_id: string;
/** The Intercom contact ID mapped to the external contact ID */
contact_id: string;
}