26 lines
504 B
TypeScript
26 lines
504 B
TypeScript
|
|
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
|
||
|
|
|
||
|
|
export class AcuitySchedulingApi implements ICredentialType {
|
||
|
|
name = 'acuitySchedulingApi';
|
||
|
|
|
||
|
|
displayName = 'Acuity Scheduling API';
|
||
|
|
|
||
|
|
documentationUrl = 'acuityScheduling';
|
||
|
|
|
||
|
|
properties: INodeProperties[] = [
|
||
|
|
{
|
||
|
|
displayName: 'User ID',
|
||
|
|
name: 'userId',
|
||
|
|
type: 'string',
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
{
|
||
|
|
displayName: 'API Key',
|
||
|
|
name: 'apiKey',
|
||
|
|
type: 'string',
|
||
|
|
typeOptions: { password: true },
|
||
|
|
default: '',
|
||
|
|
},
|
||
|
|
];
|
||
|
|
}
|