mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
cf776b8f17
Github issue / Community forum post (link here to close automatically):
55 lines
969 B
TypeScript
55 lines
969 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class Sms77Api implements ICredentialType {
|
|
name = 'sms77Api';
|
|
|
|
// eslint-disable-next-line n8n-nodes-base/cred-class-field-display-name-miscased
|
|
displayName = 'seven API';
|
|
|
|
documentationUrl = 'sms77';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'X-Api-Key': '={{$credentials.apiKey}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://gateway.seven.io/api',
|
|
url: '/hooks',
|
|
qs: {
|
|
action: 'read',
|
|
},
|
|
},
|
|
rules: [
|
|
{
|
|
type: 'responseSuccessBody',
|
|
properties: {
|
|
key: 'success',
|
|
message: 'Invalid API Key',
|
|
value: undefined,
|
|
},
|
|
},
|
|
],
|
|
};
|
|
}
|