/** * Intercom Node - Version 1 * Discriminator: resource=user, operation=getAll */ interface Credentials { intercomApi: CredentialReference; } /** The Users resource is the primary way of interacting with Intercom */ export type IntercomV1UserGetAllParams = { resource: 'user'; operation: 'getAll'; /** * Whether to return all results or only up to a given limit * @default false */ returnAll?: boolean | Expression; /** * Max number of results to return * @displayOptions.show { returnAll: [false] } * @default 50 */ limit?: number | Expression; /** * Filters * @default {} */ filters?: { /** Company ID representing the user */ company_id?: string | Expression | PlaceholderValue; /** The email address of the user */ email?: string | Expression | PlaceholderValue; /** Segment representing the user */ segment_id?: string | Expression | PlaceholderValue; /** Tag representing the user */ tag_id?: string | Expression | PlaceholderValue; }; }; export type IntercomV1UserGetAllNode = { type: 'n8n-nodes-base.intercom'; version: 1; credentials?: Credentials; config: NodeConfig; };