2022-07-24 08:36:17 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-07-02 13:41:59 -07:00
|
|
|
|
|
|
|
export class ConvertKitApi implements ICredentialType {
|
|
|
|
name = 'convertKitApi';
|
2020-08-10 06:41:10 -07:00
|
|
|
displayName = 'ConvertKit API';
|
2020-09-10 00:48:02 -07:00
|
|
|
documentationUrl = 'convertKit';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-07-02 13:41:59 -07:00
|
|
|
{
|
|
|
|
displayName: 'API Secret',
|
|
|
|
name: 'apiSecret',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-07-02 13:41:59 -07:00
|
|
|
default: '',
|
|
|
|
typeOptions: {
|
|
|
|
password: true,
|
|
|
|
},
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|