/** * Tapfiliate Node - Version 1 * Discriminator: resource=programAffiliate, operation=get */ interface Credentials { tapfiliateApi: CredentialReference; } /** Get an affiliate by ID */ export type TapfiliateV1ProgramAffiliateGetParams = { resource: 'programAffiliate'; operation: 'get'; /** * The ID of the Program to add the affiliate to. This ID can be found as part of the URL when viewing the program on the platform. Choose from the list, or specify an ID using an <a href="https://docs.n8n.io/code/expressions/">expression</a>. */ programId?: string | Expression; /** * The ID of the affiliate */ affiliateId?: string | Expression | PlaceholderValue; }; export type TapfiliateV1ProgramAffiliateGetNode = { type: 'n8n-nodes-base.tapfiliate'; version: 1; credentials?: Credentials; config: NodeConfig; };