n8n/packages/nodes-base/credentials/GetResponseApi.credentials.ts
2021-06-18 23:46:21 +02:00

19 lines
352 B
TypeScript

import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class GetResponseApi implements ICredentialType {
name = 'getResponseApi';
displayName = 'GetResponse API';
documentationUrl = 'getResponse';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
},
];
}