/** * Zammad Node - Version 1 * Discriminator: resource=organization, operation=create */ interface Credentials { zammadBasicAuthApi: CredentialReference; zammadTokenAuthApi: CredentialReference; } /** Create a group */ export type ZammadV1OrganizationCreateParams = { resource: 'organization'; operation: 'create'; authentication?: 'basicAuth' | 'tokenAuth' | Expression; /** * Organization Name */ name?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Whether the organization is shared with other instances * @default false */ shared?: boolean | Expression; /** The domain associated with the organization */ domain?: string | Expression | PlaceholderValue; /** Whether to assign users based on their email domain * @default true */ domain_assignment?: boolean | Expression; /** Whether the organization is active * @default true */ active?: boolean | Expression; /** Whether the organization is marked as VIP * @default false */ vip?: boolean | Expression; /** A note about the organization */ note?: string | Expression | PlaceholderValue; /** Custom Fields * @default {} */ customFieldsUi?: { /** Custom Field */ customFieldPairs?: Array<{ /** Name of the custom field to set. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ name?: string | Expression; /** Value to set on the custom field */ value?: string | Expression | PlaceholderValue; }>; }; }; }; export type ZammadV1OrganizationCreateNode = { type: 'n8n-nodes-base.zammad'; version: 1; credentials?: Credentials; config: NodeConfig; };