intercom-client
Version:
Official Node bindings to the Intercom API
11 lines (10 loc) • 354 B
TypeScript
/**
* Payload of the request to close a conversation
*/
export interface CloseConversationRequest {
type: "admin";
/** The id of the admin who is performing the action. */
admin_id: string;
/** Optionally you can leave a message in the conversation to provide additional context to the user and other teammates. */
body?: string;
}