/** * Freshworks CRM Node - Version 1 * Discriminator: resource=account, operation=create */ interface Credentials { freshworksCrmApi: CredentialReference; } /** Create an account */ export type FreshworksCrmV1AccountCreateParams = { resource: 'account'; operation: 'create'; /** * Name of the account */ name?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Address of the account */ address?: string | Expression | PlaceholderValue; /** Annual revenue of the account * @default 0 */ annual_revenue?: number | Expression; /** ID of the business that the account belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ business_type_id?: string | Expression; /** City that the account belongs to */ city?: string | Expression | PlaceholderValue; /** Country that the account belongs to */ country?: string | Expression | PlaceholderValue; /** Facebook username of the account */ facebook?: string | Expression | PlaceholderValue; /** ID of the industry that the account belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ industry_type_id?: string | Expression; /** LinkedIn account of the account */ linkedin?: string | Expression | PlaceholderValue; /** Number of employees in the account * @default 0 */ number_of_employees?: number | Expression; /** ID of the user to whom the account is assigned. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ owner_id?: string | Expression; /** Parent account ID of the account */ parent_sales_account_id?: string | Expression | PlaceholderValue; /** Phone number of the account */ phone?: string | Expression | PlaceholderValue; /** State that the account belongs to */ state?: string | Expression | PlaceholderValue; /** ID of the territory that the account belongs to. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ territory_id?: string | Expression; /** Twitter username of the account */ twitter?: string | Expression | PlaceholderValue; /** Website of the account */ website?: string | Expression | PlaceholderValue; /** Zipcode of the region that the account belongs to */ zipcode?: string | Expression | PlaceholderValue; }; }; export type FreshworksCrmV1AccountCreateNode = { type: 'n8n-nodes-base.freshworksCrm'; version: 1; credentials?: Credentials; config: NodeConfig; };