/** * Zendesk Node - Version 1 * Discriminator: resource=organization, operation=update */ interface Credentials { zendeskApi: CredentialReference; zendeskOAuth2Api: CredentialReference; } /** Manage organizations */ export type ZendeskV1OrganizationUpdateParams = { resource: 'organization'; operation: 'update'; authentication?: 'apiToken' | 'oAuth2' | Expression; /** * Organization ID */ id?: string | Expression | PlaceholderValue; /** * Update Fields * @default {} */ updateFields?: { /** Details about the organization, such as the address */ details?: string | Expression | PlaceholderValue; /** Comma-separated domain names associated with this organization */ domain_names?: string | Expression | PlaceholderValue; /** Name */ name?: string | Expression | PlaceholderValue; /** Notes */ notes?: string | Expression | PlaceholderValue; /** Values of custom fields in the organization's profile * @default {} */ organizationFieldsUi?: { /** Field */ organizationFieldValues?: Array<{ /** Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a> */ field?: string | Expression; /** Value */ value?: string | Expression | PlaceholderValue; }>; }; /** IDs of tags applied to this organization. Choose from the list, or specify IDs using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. * @default [] */ tags?: string[]; }; }; export type ZendeskV1OrganizationUpdateNode = { type: 'n8n-nodes-base.zendesk'; version: 1; credentials?: Credentials; config: NodeConfig; };