n8n/packages/nodes-base/credentials/MailjetEmailApi.credentials.ts

53 lines
1.1 KiB
TypeScript
Raw Normal View History

2020-02-13 07:43:59 -08:00
import {
IAuthenticateGeneric,
ICredentialTestRequest,
2020-02-13 07:43:59 -08:00
ICredentialType,
INodeProperties,
2020-02-13 07:43:59 -08:00
} from 'n8n-workflow';
export class MailjetEmailApi implements ICredentialType {
name = 'mailjetEmailApi';
displayName = 'Mailjet Email API';
documentationUrl = 'mailjet';
properties: INodeProperties[] = [
2020-02-13 07:43:59 -08:00
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
2020-02-13 07:43:59 -08:00
default: '',
},
{
displayName: 'Secret Key',
name: 'secretKey',
type: 'string',
2020-02-13 07:43:59 -08:00
default: '',
},
{
displayName: 'Sandbox Mode',
name: 'sandboxMode',
type: 'boolean',
default: false,
description:
'Whether to allow to run the API call in a Sandbox mode, where all validations of the payload will be done without delivering the message',
},
2020-02-13 07:43:59 -08:00
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
auth: {
username: '={{$credentials.apiKey}}',
password: '={{$credentials.secretKey}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: `https://api.mailjet.com`,
url: '/v3/REST/template',
method: 'GET',
},
};
2020-02-13 07:43:59 -08:00
}