mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-11 07:04:06 -08:00
20 lines
499 B
TypeScript
20 lines
499 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class DriftApi implements ICredentialType {
|
|
name = 'driftApi';
|
|
displayName = 'Drift API';
|
|
documentationUrl = 'drift';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Personal Access Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
default: '',
|
|
description: 'Visit your account details page, and grab the Access Token. See <a href="https://devdocs.drift.com/docs/quick-start">Drift auth</a>.',
|
|
},
|
|
];
|
|
}
|