/** * HaloPSA Node - Version 1 * Discriminator: resource=user, operation=getAll */ interface Credentials { haloPSAApi: CredentialReference; } /** Get many clients */ export type HaloPSAV1UserGetAllParams = { resource: 'user'; operation: 'getAll'; /** * Whether to return a simplified version of the response instead of the raw data * @default true */ simplify?: boolean | Expression; /** * 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?: { /** Active Status * @default all */ activeStatus?: 'active' | 'all' | 'inactive' | Expression; /** Filter users by your search string */ search?: string | Expression | PlaceholderValue; }; }; export type HaloPSAV1UserGetAllOutput = { emailaddress?: string; id?: number; inactive?: boolean; name?: string; site_id?: number; surname?: string; }; export type HaloPSAV1UserGetAllNode = { type: 'n8n-nodes-base.haloPSA'; version: 1; credentials?: Credentials; config: NodeConfig; output?: Items; };