Msg91 Integration(node)

This commit is contained in:
Priyanka P
2019-12-13 16:59:33 +05:30
parent d68c6bf195
commit e4eefedcbf
5 changed files with 271 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class Msg91Api implements ICredentialType {
name = 'msg91Api';
displayName = 'Msg91 Api';
properties = [
// User authentication key
{
displayName: 'Authentication Key',
name: 'authkey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}