mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
21 lines
359 B
TypeScript
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: '',
|
|
},
|
|
|
|
];
|
|
}
|