n8n/packages/nodes-base/credentials/LoneScaleApi.credentials.ts
कारतोफ्फेलस्क्रिप्ट™ 004d38d82b
ci: Fix docs urls (no-changelog) (#6433)
2023-06-14 21:48:15 +02:00

41 lines
711 B
TypeScript

import type {
IAuthenticateGeneric,
ICredentialTestRequest,
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class LoneScaleApi implements ICredentialType {
name = 'loneScaleApi';
displayName = 'LoneScale API';
documentationUrl = 'lonescale';
properties: INodeProperties[] = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
authenticate: IAuthenticateGeneric = {
type: 'generic',
properties: {
headers: {
Authorization: '={{$credentials.apiKey}}',
},
},
};
test: ICredentialTestRequest = {
request: {
baseURL: 'https://public-api.lonescale.com',
url: '/users',
},
};
}