mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
32 lines
691 B
TypeScript
32 lines
691 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class HubspotAppToken implements ICredentialType {
|
|
name = 'hubspotAppToken';
|
|
displayName = 'HubSpot App Token';
|
|
documentationUrl = 'hubspot';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'APP Token',
|
|
name: 'appToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
|
|
authenticate: IAuthenticateGeneric = {
|
|
type: 'generic',
|
|
properties: {
|
|
headers: {
|
|
Authorization: '=Bearer {{$credentials.appToken}}',
|
|
},
|
|
},
|
|
};
|
|
|
|
test: ICredentialTestRequest = {
|
|
request: {
|
|
baseURL: 'https://api.hubapi.com',
|
|
url: '/account-info/v3/details',
|
|
},
|
|
};
|
|
}
|