2021-06-12 09:39:55 -07:00
|
|
|
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
2020-06-16 17:46:38 -07:00
|
|
|
|
|
|
|
export class ZoomApi implements ICredentialType {
|
|
|
|
name = 'zoomApi';
|
|
|
|
displayName = 'Zoom API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'zoom';
|
2021-06-12 09:39:55 -07:00
|
|
|
properties: INodeProperties[] = [
|
2020-06-16 17:46:38 -07:00
|
|
|
{
|
2020-07-09 05:33:05 -07:00
|
|
|
displayName: 'JWT Token',
|
2020-06-16 17:46:38 -07:00
|
|
|
name: 'accessToken',
|
2021-06-12 09:39:55 -07:00
|
|
|
type: 'string',
|
2020-10-22 06:46:03 -07:00
|
|
|
default: '',
|
|
|
|
},
|
2020-06-16 17:46:38 -07:00
|
|
|
];
|
|
|
|
}
|