add basic customer.io trigger

This commit is contained in:
shraddha shaligram
2020-06-30 13:35:31 -07:00
parent 13f71d3af0
commit 7d625572c1
7 changed files with 411 additions and 12 deletions

View File

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