n8n-nodes-ippanel
Version:
n8n node for IPPanel SMS service
21 lines (19 loc) • 454 B
text/typescript
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class IPPanelApi implements ICredentialType {
name = 'ipPanelApi';
displayName = 'IPPanel API';
documentationUrl = 'https://github.com/ippanelcom/node-sdk';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
default: '',
required: true,
description: 'The IPPanel API key',
},
];
}