Postmark trigger

This commit is contained in:
Rupenieks
2020-06-24 15:46:56 +02:00
parent 6a33566809
commit 55ed53579f
5 changed files with 342 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class PostmarkApi implements ICredentialType {
name = 'postmarkApi';
displayName = 'Postmark API';
properties = [
{
displayName: 'Server Token',
name: 'serverToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}