/** * Keap Node - Version 1 * Discriminator: resource=contactNote, operation=update */ interface Credentials { keapOAuth2Api: CredentialReference; } /** Update a note */ export type KeapV1ContactNoteUpdateParams = { resource: 'contactNote'; operation: 'update'; /** * Note ID */ noteId?: string | Expression | PlaceholderValue; /** * Additional Fields * @default {} */ additionalFields?: { /** Body */ body?: string | Expression | PlaceholderValue; /** Contact ID * @default 0 */ contactId?: number | Expression; /** Title */ title?: string | Expression | PlaceholderValue; /** Type */ type?: 'appointment' | 'call' | 'email' | 'fax' | 'letter' | 'other' | Expression; /** The infusionsoft user to create the note on behalf of. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ userId?: string | Expression; }; }; export type KeapV1ContactNoteUpdateNode = { type: 'n8n-nodes-base.keap'; version: 1; credentials?: Credentials; config: NodeConfig; };