n8n/packages/nodes-base/credentials/SurveyMonkeyApi.credentials.ts

38 lines
804 B
TypeScript
Raw Normal View History

2020-04-26 10:51:20 -07:00
import {
ICredentialType,
INodeProperties,
2020-04-26 10:51:20 -07:00
} from 'n8n-workflow';
export class SurveyMonkeyApi implements ICredentialType {
name = 'surveyMonkeyApi';
displayName = 'SurveyMonkey API';
documentationUrl = 'surveyMonkey';
properties: INodeProperties[] = [
2020-04-26 10:51:20 -07:00
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
2020-04-26 10:51:20 -07:00
default: '',
2020-04-26 16:03:01 -07:00
description: `The access token must have the following scopes:</br />
- Create/modify webhooks</br />
- View webhooks</br />
- View surveys</br />
- View collectors</br />
- View responses<br />
2020-04-26 10:51:20 -07:00
- View response details`,
},
{
displayName: 'Client ID',
name: 'clientId',
type: 'string',
2020-04-26 10:51:20 -07:00
default: '',
},
{
displayName: 'Client Secret',
name: 'clientSecret',
type: 'string',
2020-04-26 10:51:20 -07:00
default: '',
},
];
}