n8n-nodes-starter/credentials/outgrowApi.credentials.ts
2025-06-09 13:11:49 +05:30

22 lines
No EOL
566 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class outgrowApi implements ICredentialType {
name = 'outgrowApi'; // 👈 Must match what you use in the node
displayName = 'Outgrow API';
documentationUrl = 'https://docs.n8n.io/integrations/creating-nodes/build/credentials/';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
required: true,
description: 'Your Outgrow API key',
},
];
// No built-in auth here since we inject key manually in node code
}