diff --git a/packages/nodes-base/credentials/AirtableApi.credentials.ts b/packages/nodes-base/credentials/AirtableApi.credentials.ts new file mode 100644 index 0000000000..720f9dbdb7 --- /dev/null +++ b/packages/nodes-base/credentials/AirtableApi.credentials.ts @@ -0,0 +1,18 @@ +import { + ICredentialType, + NodePropertyTypes, +} from 'n8n-workflow'; + + +export class AirtableApi implements ICredentialType { + name = 'airtableApi'; + displayName = 'Airtable API'; + properties = [ + { + displayName: 'API Key', + name: 'apiKey', + type: 'string' as NodePropertyTypes, + default: '', + }, + ]; +}