n8n/packages/nodes-base/credentials/SendGridApi.credentials.ts
Harshil Agrawal 70eea2d5ca
Add SendGrid node (#1321)
* Add SendGrid node

* 👕Fix lint issue

*  Improvements

*  Improvements

*  Improvements

*  Fix SendGrid-Node

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
2021-01-20 00:16:25 +01:00

19 lines
344 B
TypeScript

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class SendGridApi implements ICredentialType {
name = 'sendGridApi';
displayName = 'SendGrid API';
documentationUrl = 'sendgrid';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}