@figuro/chatwoot-sdk
Version:
SDK for JS/Typescript for Chatwoot.
15 lines (14 loc) • 335 B
TypeScript
export declare type integrations_hook_create_payload = {
/**
* The ID of app for which integration hook is being created
*/
app_id?: string;
/**
* The inbox ID, if the hook is an inbox hook
*/
inbox_id?: string;
/**
* The settings required by the integration
*/
settings?: any;
};