intercom-client
Version:
Official Node bindings to the Intercom API
14 lines (13 loc) • 398 B
TypeScript
/**
* @example
* {
* contact_id: "63a07ddf05a32042dffac965",
* subscription_id: "37846"
* }
*/
export interface DetachSubscriptionFromContactRequest {
/** The unique identifier for the contact which is given by Intercom */
contact_id: string;
/** The unique identifier for the subscription type which is given by Intercom */
subscription_id: string;
}