n8n/packages/nodes-base/credentials/CustomerIoApi.credentials.ts
2020-08-17 14:42:09 +02:00

21 lines
359 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class CustomerIoApi implements ICredentialType {
name = 'customerIoApi';
displayName = 'Customer.io API';
documentationUrl = 'customerIo';
properties = [
{
displayName: 'App API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}