UNPKG

intercom-client

Version:

Official Node bindings to the Intercom API

31 lines (30 loc) 601 B
/** * @example * { * contact_id: "123", * body: "Hello", * admin_id: "123" * } * * @example * { * contact_id: "123", * body: "Hello", * admin_id: "123" * } * * @example * { * contact_id: "123", * body: "Hello", * admin_id: "123" * } */ export interface CreateContactNoteRequest { /** The unique identifier of a given contact. */ contact_id: string; /** The text of the note. */ body: string; /** The unique identifier of a given admin. */ admin_id?: string; }