mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
76f9ad8bae
* Add credential injection and testing to Lemlist, Uproc, Supabase, Segment, Phantombuster, Mailgun and Dropcontact
40 lines
762 B
TypeScript
40 lines
762 B
TypeScript
import {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
NodePropertyTypes,
|
|
} from 'n8n-workflow';
|
|
|
|
export class DropcontactApi implements ICredentialType {
|
|
name = 'dropcontactApi';
|
|
displayName = 'Dropcontact API';
|
|
documentationUrl = 'dropcontact';
|
|
properties = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string' as NodePropertyTypes,
|
|
default: '',
|
|
},
|
|
];
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
'user-agent': 'n8n',
|
|
'X-Access-Token': '={{$credentials.apiKey}}',
|
|
},
|
|
},
|
|
};
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://api.dropcontact.io',
|
|
url: '/batch',
|
|
method: 'POST',
|
|
body: {
|
|
data: [{ email: '' }],
|
|
},
|
|
},
|
|
};
|
|
}
|