mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-12 16:10:30 +02:00
51 lines
979 B
TypeScript
51 lines
979 B
TypeScript
import type {
|
|
IAuthenticateGeneric,
|
|
ICredentialTestRequest,
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class FreshdeskApi implements ICredentialType {
|
|
name = 'freshdeskApi';
|
|
|
|
displayName = 'Freshdesk API';
|
|
|
|
documentationUrl = 'freshdesk';
|
|
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'API Key',
|
|
name: 'apiKey',
|
|
type: 'string',
|
|
typeOptions: { password: true },
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Domain',
|
|
name: 'domain',
|
|
type: 'string',
|
|
placeholder: 'company',
|
|
description:
|
|
'If the URL you get displayed on Freshdesk is "https://company.freshdesk.com" enter "company"',
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
auth: {
|
|
username: '={{$credentials.apiKey}}',
|
|
password: 'X',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: '=https://{{$credentials.domain}}.freshdesk.com/api/v2',
|
|
url: '/agents/me',
|
|
},
|
|
};
|
|
}
|