41 lines
750 B
TypeScript
41 lines
750 B
TypeScript
|
|
import type {
|
||
|
|
IAuthenticateGeneric,
|
||
|
|
ICredentialTestRequest,
|
||
|
|
ICredentialType,
|
||
|
|
INodeProperties,
|
||
|
|
} from 'n8n-workflow';
|
||
|
|
|
||
|
|
export class PhantombusterApi implements ICredentialType {
|
||
|
|
name = 'phantombusterApi';
|
||
|
|
|
||
|
|
displayName = 'Phantombuster API';
|
||
|
|
|
||
|
|
documentationUrl = 'phantombuster';
|
||
|
|
|
||
|
|
properties: INodeProperties[] = [
|
||
|
|
{
|
||
|
|
displayName: 'API Key',
|
||
|
|
name: 'apiKey',
|
||
|
|
type: 'string',
|
||
|
|
typeOptions: { password: true },
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
|
||
|
|
authenticate: IAuthenticateGeneric = {
|
||
|
|
type: 'generic',
|
||
|
|
properties: {
|
||
|
|
headers: {
|
||
|
|
'X-Phantombuster-Key': '={{$credentials.apiKey}}',
|
||
|
|
},
|
||
|
|
},
|
||
|
|
};
|
||
|
|
|
||
|
|
test: ICredentialTestRequest = {
|
||
|
|
request: {
|
||
|
|
baseURL: 'https://api.phantombuster.com/api/v2',
|
||
|
|
url: '/agents/fetch-all',
|
||
|
|
},
|
||
|
|
};
|
||
|
|
}
|