Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/credentials/WorkableApi.credentials.ts
2025-09-08 04:48:28 +08:00

26 lines
486 B
TypeScript
Executable File

import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export class WorkableApi implements ICredentialType {
name = 'workableApi';
displayName = 'Workable API';
documentationUrl = 'workable';
properties: INodeProperties[] = [
{
displayName: 'Subdomain',
name: 'subdomain',
type: 'string',
default: '',
},
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
typeOptions: { password: true },
default: '',
},
];
}