/** * ActiveCampaign Node - Version 1 * Discriminator: resource=connection, operation=create */ interface Credentials { activeCampaignApi: CredentialReference; } /** Create an account */ export type ActiveCampaignV1ConnectionCreateParams = { resource: 'connection'; operation: 'create'; /** * The name of the service */ service?: string | Expression | PlaceholderValue; /** * The ID of the account in the external service */ externalid?: string | Expression | PlaceholderValue; /** * The name associated with the account in the external service. Often this will be a company name (e.g., "My Toystore, Inc."). */ name?: string | Expression | PlaceholderValue; /** * The URL to a logo image for the external service */ logoUrl?: string | Expression | PlaceholderValue; /** * The URL to a page where the integration with the external service can be managed in the third-party's website */ linkUrl?: string | Expression | PlaceholderValue; }; export type ActiveCampaignV1ConnectionCreateNode = { type: 'n8n-nodes-base.activeCampaign'; version: 1; credentials?: Credentials; config: NodeConfig; };