mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
35 lines
684 B
TypeScript
35 lines
684 B
TypeScript
|
import {
|
||
|
IAuthenticateGeneric,
|
||
|
ICredentialTestRequest,
|
||
|
ICredentialType,
|
||
|
NodePropertyTypes,
|
||
|
} from 'n8n-workflow';
|
||
|
|
||
|
export class HighLevelApi implements ICredentialType {
|
||
|
name = 'highLevelApi';
|
||
|
displayName = 'HighLevel API';
|
||
|
documentationUrl = 'highLevel';
|
||
|
properties = [
|
||
|
{
|
||
|
displayName: 'API Key',
|
||
|
name: 'apiKey',
|
||
|
type: 'string' as NodePropertyTypes,
|
||
|
default: '',
|
||
|
},
|
||
|
];
|
||
|
authenticate: IAuthenticateGeneric = {
|
||
|
type: 'generic',
|
||
|
properties: {
|
||
|
headers: {
|
||
|
Authorization: '=Bearer {{$credentials.apiKey}}',
|
||
|
},
|
||
|
},
|
||
|
};
|
||
|
test: ICredentialTestRequest = {
|
||
|
request: {
|
||
|
baseURL: 'https://rest.gohighlevel.com/v1',
|
||
|
url: '/custom-values/',
|
||
|
},
|
||
|
};
|
||
|
}
|