/** * KoBoToolbox Node - Version 1 * Discriminator: resource=file, operation=delete */ interface Credentials { koBoToolboxApi: CredentialReference; } /** Delete a single submission */ export type KoBoToolboxV1FileDeleteParams = { resource: 'file'; operation: 'delete'; /** * Form ID (e.g. aSAvYreNzVEkrWg5Gdcvg). Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ formId?: string | Expression; /** * Uid of the file (should start with "af" e.g. "afQoJxA4kmKEXVpkH6SYbhb" */ fileId?: string | Expression | PlaceholderValue; }; export type KoBoToolboxV1FileDeleteNode = { type: 'n8n-nodes-base.koBoToolbox'; version: 1; credentials?: Credentials; config: NodeConfig; };