2020-04-26 10:51:20 -07:00
|
|
|
import {
|
|
|
|
ICredentialType,
|
|
|
|
NodePropertyTypes,
|
|
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
|
|
export class SurveyMonkeyApi implements ICredentialType {
|
|
|
|
name = 'surveyMonkeyApi';
|
|
|
|
displayName = 'SurveyMonkey API';
|
2020-08-17 05:42:09 -07:00
|
|
|
documentationUrl = 'surveyMonkey';
|
2020-04-26 10:51:20 -07:00
|
|
|
properties = [
|
|
|
|
{
|
|
|
|
displayName: 'Access Token',
|
|
|
|
name: 'accessToken',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
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' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
{
|
|
|
|
displayName: 'Client Secret',
|
|
|
|
name: 'clientSecret',
|
|
|
|
type: 'string' as NodePropertyTypes,
|
|
|
|
default: '',
|
|
|
|
},
|
|
|
|
];
|
|
|
|
}
|