mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
54 lines
1.0 KiB
TypeScript
54 lines
1.0 KiB
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialType,
|
|
ICredentialTestRequest,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
import { BASE_URL } from '../nodes/Airtop/constants';
|
|
|
|
export class AirtopApi implements ICredentialType {
|
|
name = 'airtopApi';
|
|
|
|
displayName = 'Airtop API';
|
|
|
|
documentationUrl = 'airtop';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
default: '',
|
|
description:
|
|
'The Airtop API key. You can create one at <a href="https://portal.airtop.ai/api-keys" target="_blank">Airtop</a> for free.',
|
|
required: true,
|
|
typeOptions: {
|
|
password: true,
|
|
},
|
|
noDataExpression: true,
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Bearer {{$credentials.apiKey}}',
|
|
'api-key': '={{$credentials.apiKey}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
method: 'GET',
|
|
baseURL: BASE_URL,
|
|
url: '/sessions',
|
|
qs: {
|
|
limit: 10,
|
|
},
|
|
},
|
|
};
|
|
}
|